| | |
| | | package com.doumee.dao.system.dto; |
| | | |
| | | import com.doumee.core.annotation.excel.ExcelColumn; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.util.Date; |
| | | |
| | |
| | | @Data |
| | | public class NoticesDTO { |
| | | |
| | | @ApiModelProperty(value = "用户主键",hidden = true) |
| | | @ApiModelProperty(value = "member主键",hidden = true) |
| | | private Integer memberId; |
| | | |
| | | @ApiModelProperty(value = "用户主键",hidden = true) |
| | | private Integer userId; |
| | | |
| | | @ApiModelProperty(value = "查询类型: 0=待处理;1=已处理;2=我发布的;3=抄送我") |
| | | private Integer queryType; |
| | | |
| | | @ApiModelProperty(value = "开始日期") |
| | | @JsonFormat(pattern="yyyy-MM-dd") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private Date startDate; |
| | | |
| | | @ApiModelProperty(value = "结束日期") |
| | | @JsonFormat(pattern="yyyy-MM-dd") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private Date endDate; |
| | | |
| | | @ApiModelProperty(value = "0访客审批 1访客报备 2用车审批 3隐患处理 4物流车审批 5系统系统") |
| | | @ApiModelProperty(value = "0访客审批 1访客报备 2用车审批 3隐患处理 4物流车审批 5系统系统 7安防平台待办") |
| | | private Integer type; |
| | | |
| | | @ApiModelProperty(value = "只看未读:1=是;0=否") |