| | |
| | | package com.gkhy.safePlatform.equipment.model.dto.req; |
| | | |
| | | import java.sql.Timestamp; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.gkhy.safePlatform.equipment.annotation.Query; |
| | | |
| | | public class EquipmentTestDetailQueryCriteria { |
| | |
| | | private Long testPersonId; |
| | | //检测日期 |
| | | @Query() |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Timestamp testDate; |
| | | //检测人单位/外键 |
| | | @Query() |
| | |
| | | private String testStatus; |
| | | //创建日期 |
| | | @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; |
| | | |
| | | |