检查事项等接口开发
This commit is contained in:
parent
45ccc5fa74
commit
7a74d9f0d1
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -32,6 +32,7 @@ public class CheckItem extends BaseModel {
|
|||
@Column(length = 26)
|
||||
@Comment("检查项ID")
|
||||
private String itemId;
|
||||
|
||||
/**
|
||||
* 检查事项名称
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -138,6 +138,7 @@ public class EnforceCheck extends BaseModel {
|
|||
@Column(length = 50)
|
||||
@Comment("填报人姓名")
|
||||
private String writerName;
|
||||
|
||||
/**
|
||||
* 检查表检查事项id集合,表示列出需要查询那些检查项
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -13,4 +13,5 @@ public class CheckItemQuery extends BaseQuery {
|
|||
private String itemTable;
|
||||
private String itemType;
|
||||
private LocalDateTime[] updateTimeList;
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue