| | |
| | | package com.gkhy.safePlatform.targetDuty.model.dto.req; |
| | | |
| | | import java.sql.Timestamp; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.gkhy.safePlatform.targetDuty.annotation.Query; |
| | | |
| | | public class TargetDivideDetailQueryCriteria { |
| | |
| | | private String value; |
| | | //制定日期 |
| | | @Query() |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Timestamp makeDate; |
| | | //责任部门/外键 |
| | | @Query() |
| | |
| | | private Long commitPersonId; |
| | | |
| | | @Query() |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Timestamp createTime; |
| | | |
| | | @Query() |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Timestamp updateTime; |
| | | |
| | | |