全局通用查询,新增,修改,任务确认完成接口

This commit is contained in:
youxilong 2024-02-27 13:17:24 +08:00
parent f8b4e26afc
commit 500720f8b5
4 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,9 @@
package com.xinelu.common.custominterface;
/**
* @description 全局新增接口
* @author jihan
* @date 2022-07-28 11:52:00
*/
public interface Insert {
}

View File

@ -0,0 +1,10 @@
package com.xinelu.common.custominterface;
/**
* @Description 全局查询接口
* @Author 纪寒
* @Date 2022-09-06 10:58:16
* @Version 1.0
*/
public interface Query {
}

View File

@ -0,0 +1,8 @@
package com.xinelu.common.custominterface;
/**
* @author ljh
* @description 任务确认完成新增接口
*/
public interface TaskInsert {
}

View File

@ -0,0 +1,9 @@
package com.xinelu.common.custominterface;
/**
* @author jihan
* @description 全局修改接口
* @date 2022-07-28 11:52:00
*/
public interface Update {
}