jiaosong
2023-08-14 3eca8e4741b06c6049fedccd5c0dea4e01b7aa5c
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
package doumeemes.dao.ext.vo;
 
import cn.afterturn.easypoi.excel.annotation.Excel;
import doumeemes.dao.business.model.*;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
 
/**
 * @author 江蹄蹄
 * @date 2022/06/27 13:58
 */
@Data
@ApiModel("工艺卡管理列表对象")
public class RouteCardExtListVO {
 
    @ApiModelProperty(value = "主键", example = "1")
    private Integer id;
 
    @ApiModelProperty(value = "是否已删除 0未删除 1已删除", example = "1")
    private Byte deleted;
 
    @ApiModelProperty(value = "创建人编码", example = "1")
    private Integer createUser;
 
    @ApiModelProperty(value = "创建时间")
   // @JsonFormat(pattern = "yyyy-MM-dd")
    private Date createTime;
 
    @ApiModelProperty(value = "更新人编码", example = "1")
    private Integer updateUser;
 
    @ApiModelProperty(value = "更新时间")
   // @JsonFormat(pattern = "yyyy-MM-dd")
    private Date updateTime;
 
    @ApiModelProperty(value = "备注")
    private String remark;
 
    @ApiModelProperty(value = "公司级组织编码(关联department表组织)", example = "1")
    private Integer departId;
 
    @Excel(name="工厂",orderNum ="1")
    private String departName;
 
 
    @Excel(name="产品名称",orderNum ="2")
    private String marterialName;
 
    @Excel(name="工序",orderNum ="3")
    private String productName;
 
 
    @ApiModelProperty(value = "注意事项")
    @Excel(name="注意事项",orderNum ="4")
    private String tips;
 
    @ApiModelProperty(value = "主组织编码(关联department表根组织)", example = "1")
    private Integer rootDepartId;
 
    @ApiModelProperty(value = "BOM历史版本编码(bom_version表)", example = "1")
    private Integer bomId;
 
    @ApiModelProperty(value = "工艺工序关联编码(关联route_procedure表)", example = "1")
    private Integer routeProcedureId;
 
 
    @ApiModelProperty(value = "附件地址")
    private String fileurl;
 
    @ApiModelProperty(value = "工艺路线与工序关联表,工艺路线行表信息")
    private RouteProcedure rmodel;
 
    @ApiModelProperty(value = "物料清单版本历史信息表信息")
    private BomVersion bmodel;
 
 
 
    @ApiModelProperty(value = "物料基本信息表信息")
    private Material mmodel;
    @ApiModelProperty(value = "系统-组织信息表信息")
    private Department dmodel;
 
    @ApiModelProperty(value = "工序名称")
    private String procedureName;
 
    @ApiModelProperty(value = "工序编码")
    private String procedureCode;
 
    @ApiModelProperty(value = "路径前缀地址")
    private String resourcePath;
 
 
    @ApiModelProperty(value = "工厂名称")
    private String factoryName;
 
    @ApiModelProperty(value = "工厂id")
    private String factoryId;
 
    @ApiModelProperty(value = "物料单位信息表信息")
    private Unit umodel;
 
 
}