| | |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.project.common.annotation.Excel; |
| | | import com.project.enforce.domain.EnforcePeer; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | |
| | | /** |
| | |
| | | |
| | | @Excel(name = "计划执法时间" , width = 30, dateFormat = "yyyy-MM-dd") |
| | | @ApiModelProperty("计划执法时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm") |
| | | private Date planTime; |
| | | |
| | | @ApiModelProperty("扫码入场时间") |
| | |
| | | @ApiModelProperty("投诉内容") |
| | | private String complaintReason; |
| | | |
| | | |
| | | @ApiModelProperty("同行人数组") |
| | | private List<EnforcePeer> peers; |
| | | } |