| | |
| | | package com.ycl.platform.domain.vo; |
| | | |
| | | import annotation.Excel; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ycl.platform.base.AbsVo; |
| | | import com.ycl.platform.domain.entity.Report; |
| | | |
| | |
| | | private String errorType; |
| | | |
| | | /** 审核时间 */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @Excel(name = "审核时间", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date auditingTime; |
| | | |
| | | /** |
| | | * 生效时间 |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date beginCreateTime; |
| | | |
| | | /** |
| | | * 失效时间 |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date endCreateTime; |
| | | |
| | | /** |