| | |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | |
| | | /** |
| | | * 状态 1-待处理 2-已处理 |
| | | */ |
| | | @ApiModelProperty("状态 1-待处理 2-已处理") |
| | | @Schema(description = "状态 1-待处理 2-已处理") |
| | | private Integer status; |
| | | |
| | | |
| | |
| | | /** |
| | | * 登记人名称 |
| | | */ |
| | | @ApiModelProperty("登记人名称") |
| | | @Schema(description = "登记人名称") |
| | | @Excel(name = "登记人名称") |
| | | private String checkNickName; |
| | | |
| | |
| | | /** |
| | | * 客户名称 |
| | | */ |
| | | @ApiModelProperty("客户名称") |
| | | @Schema(description = "客户名称") |
| | | @Excel(name = "客户名称") |
| | | private String customerName; |
| | | |
| | | /** |
| | | * 问题描述 |
| | | */ |
| | | @ApiModelProperty("问题描述") |
| | | @Schema(description = "问题描述") |
| | | @Excel(name = "问题描述") |
| | | private String proDesc; |
| | | |
| | |
| | | /** |
| | | * 反馈日期 |
| | | */ |
| | | @ApiModelProperty("反馈日期") |
| | | @Schema(description = "反馈日期") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = "反馈日期", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date feedbackDate; |
| | | |
| | | |
| | | @ApiModelProperty("关联部门") |
| | | @Schema(description = "关联部门") |
| | | @Excel(name = "关联部门") |
| | | private String deptName; |
| | | |