| package doumeemes.dao.business.vo; | 
|   | 
| import com.baomidou.mybatisplus.annotation.IdType; | 
| import com.baomidou.mybatisplus.annotation.TableField; | 
| import com.baomidou.mybatisplus.annotation.TableId; | 
| import com.baomidou.mybatisplus.annotation.TableName; | 
| import com.fasterxml.jackson.annotation.JsonFormat; | 
| import doumeemes.core.annotation.excel.ExcelColumn; | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.math.BigDecimal; | 
| import java.util.Date; | 
|   | 
| /** | 
|  * 工单类-报工不良记录类型表 | 
|  * @author 江蹄蹄 | 
|  * @since 2023/08/16 14:15 | 
|  */ | 
| @Data | 
| public class UnqualifiedRecordVO { | 
|   | 
|   | 
|     @ApiModelProperty(value = "创建时间") | 
|     @ExcelColumn(name="创建时间",index = 7,width =15) | 
|     @JsonFormat(pattern = "yyyy-MM-dd") | 
|     private Date createTime; | 
|   | 
|     @ApiModelProperty(value = "检验不合格数量", example = "1") | 
|     @ExcelColumn(name="数量",index = 6,width =15) | 
|     private BigDecimal unqualifiedNum; | 
|   | 
|     @ApiModelProperty(value = "工单编码", example = "1") | 
|     @ExcelColumn(name="工单编码",index = 1,width =15) | 
|     private String workOrderCode; | 
|   | 
|     @ApiModelProperty(value = "物料名称", example = "1") | 
|     @ExcelColumn(name="物料名称",index = 2,width =15) | 
|     private String materialName; | 
|   | 
|     @ApiModelProperty(value = "物料编码", example = "1") | 
|     @ExcelColumn(name="物料编码",index = 3,width =15) | 
|     private String materialCode; | 
|   | 
|     @ApiModelProperty(value = "工序", example = "1") | 
|     @ExcelColumn(name="工序",index = 4,width =15) | 
|     private String proceduresName; | 
|   | 
|     @ApiModelProperty(value = "不良项", example = "1") | 
|     @ExcelColumn(name="不良项",index = 5,width =15) | 
|     private String categoryName; | 
|   | 
|     @ApiModelProperty(value = "创建人", example = "1") | 
|     @ExcelColumn(name="创建人",index = 8,width =15) | 
|     private String createUserName; | 
| } |