package com.doumee.dao.business.vo;
|
|
import com.doumee.core.annotation.excel.ExcelColumn;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* Created by IntelliJ IDEA.
|
*
|
* @Author : Rk
|
* @create 2023/7/13 10:40
|
*/
|
@Data
|
@ApiModel("DCA工单记录导出信息")
|
public class WorkorderDcaDto {
|
@ApiModelProperty(value = "序号")
|
@ExcelColumn(name="序号",index =1 ,width = 4)
|
private Long index;
|
@ApiModelProperty(value = "工单号")
|
@ExcelColumn(name="工单号",index =2 ,width = 8)
|
private String code;
|
@ApiModelProperty("观察主题")
|
@ExcelColumn(name="观察主题",index =3,width = 6)
|
private String typeName;
|
@ApiModelProperty(value = "上报时间", example = "1")
|
@ExcelColumn(name="上报时间",index =5 ,dateFormat = "yyyy-MM-dd HH:mm:ss",width = 10)
|
private Date submitDate;
|
@ApiModelProperty(value = "发现时间", example = "1")
|
@ExcelColumn(name="发现时间",index =6 ,dateFormat = "yyyy-MM-dd HH:mm:ss",width = 10)
|
private Date happenTime;
|
@ApiModelProperty(value = "符合项数量", example = "1")
|
@ExcelColumn(name="符合项数量",index =7,width = 4)
|
private Integer dcaYesNum;
|
@ApiModelProperty(value = "不符合项数量", example = "1")
|
@ExcelColumn(name="不符合项数量",index =8,width = 4)
|
private Integer dcaNoNum;
|
@ApiModelProperty("提报人员名称")
|
@ExcelColumn(name="上报员工",index =12,width = 4)
|
private String memberName;
|
@ApiModelProperty("员工手机号")
|
@ExcelColumn(name="员工手机号",index =13,width = 6)
|
private String memberPhone;
|
@ApiModelProperty("提报人员所属部门")
|
@ExcelColumn(name="所属部门",index =14,width = 8)
|
private String companyName;
|
@ApiModelProperty(value = "提交时间")
|
@ExcelColumn(name="提交时间",index =15 ,dateFormat = "yyyy-MM-dd HH:mm:ss",width = 10)
|
private Date createDate;
|
|
|
|
|
}
|