parent
bb32eaafe0
commit
366000a488
@ -0,0 +1,28 @@
|
||||
package com.gccloud.dataroom.core.module.manage.extend;
|
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
/**
|
||||
* @author hongyang
|
||||
* @version 1.0
|
||||
* @date 2023/8/1 15:10
|
||||
*/
|
||||
@Component
|
||||
public class DataRoomExtendClient {
|
||||
|
||||
@Autowired(required = false)
|
||||
private IDataRoomExtendService extendService;
|
||||
|
||||
|
||||
/**
|
||||
* 删除大屏后的扩展方法
|
||||
* @param code
|
||||
*/
|
||||
public void deleteByCode(String code) {
|
||||
if (extendService != null) {
|
||||
extendService.deleteByCode(code);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
package com.gccloud.dataroom.core.module.manage.extend;
|
||||
|
||||
/**
|
||||
* 大屏扩展接口
|
||||
* @author hongyang
|
||||
* @version 1.0
|
||||
* @date 2023/8/1 15:10
|
||||
*/
|
||||
public interface IDataRoomExtendService {
|
||||
|
||||
/**
|
||||
* 大屏删除拓展
|
||||
* 会在大屏删除后调用
|
||||
* @param code
|
||||
*/
|
||||
void deleteByCode(String code);
|
||||
|
||||
}
|
Loading…
Reference in New Issue