检查事项等接口开发

This commit is contained in:
zhangchaoyang02 2025-03-28 13:43:23 +08:00
parent 45ccc5fa74
commit 7a74d9f0d1
4 changed files with 4 additions and 0 deletions

View File

@ -22,6 +22,7 @@ import java.util.List;
@RequestMapping(Constants.API_PREFIX + "/lawenforcement/checkItems")
public class CheckItemController {
private final CheckItemService checkItemService;
public CheckItemController(CheckItemService checkItemService) {

View File

@ -32,6 +32,7 @@ public class CheckItem extends BaseModel {
@Column(length = 26)
@Comment("检查项ID")
private String itemId;
/**
* 检查事项名称
*/

View File

@ -138,6 +138,7 @@ public class EnforceCheck extends BaseModel {
@Column(length = 50)
@Comment("填报人姓名")
private String writerName;
/**
* 检查表检查事项id集合表示列出需要查询那些检查项
*/

View File

@ -13,4 +13,5 @@ public class CheckItemQuery extends BaseQuery {
private String itemTable;
private String itemType;
private LocalDateTime[] updateTimeList;
}