bug
jiangping
2023-11-07 64b432916af9c9218ab3f3eca614e26c542142ae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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;
}