| | |
| | | package com.ycl.platform.domain.query; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ycl.platform.base.AbsQuery; |
| | | import io.swagger.annotations.ApiModel; |
| | | import lombok.Data; |
| | | import lombok.experimental.Accessors; |
| | | |
| | | import java.time.LocalDateTime; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * 运维单位查询 |
| | |
| | | @Accessors(chain = true) |
| | | @ApiModel(value = "YwUnit查询", description = "运维单位查询") |
| | | public class YwUnitQuery extends AbsQuery { |
| | | |
| | | /** |
| | | * 单位编码 |
| | | */ |
| | | private String unitCode; |
| | | |
| | | /** |
| | | * 单位名称 |
| | | */ |
| | | private String unitName; |
| | | |
| | | /** |
| | | * 开始时间 |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date start; |
| | | |
| | | /** |
| | | * 结束时间 |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date end; |
| | | |
| | | } |
| | | |