Fixiaobai
2023-11-09 3059430a0db3f75426e435c06090358646fc3792
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
package com.chinaztt.mes.basic.vo;
 
 
import com.baomidou.mybatisplus.annotation.FieldFill;
import com.baomidou.mybatisplus.annotation.TableField;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.time.LocalDateTime;
import java.util.List;
 
//触发零件新增
@Data
public class PartVo {
 
    //类型:新增/修改(add/edit)
    private String type;
 
    //模板id
    private String template_id;
 
    //模板Code
    private String template_code;
 
    //模板版本
    private String template_version;
 
    //语言
    private String material_language;
 
    //物料编号
    private String material_number;
 
    //分类详情
    private String category_name;
 
    //分类id
    private String category_id;
 
    //原零件号
    private String ori_part_no;
 
    //物料名称
    private String material_name;
 
    //物料型号
    private String material_spec;
 
    //物料描述
    private String material_description;
 
    //物料其他属性
    private String material_explain;
 
    //物料单位
    private String unit;
 
    //创建时间
    private LocalDateTime createTime;
 
    //创建人
    private String create_name;
 
    //更新时间
    private LocalDateTime updateTime;
 
    //更新人
    private String update_name;
 
    //一级分类编码
    private String firstCategory;
 
    //一级分类描述
    private String firstCategoryName;
 
    //二级分类编码
    private String secondCategory;
 
    //二级分类描述
    private String secondCategoryName;
 
    //三级分类编码
    private String thirdCategory;
 
    //三级分类描述
    private String thirdCategoryName;
 
    //状态
    private String status;
 
    //同步过的域
    private String syncSite;
 
    //个性化字段
    private List<PropertyVo> property;
 
    //零件属性
    private List<PropertiesInfoVo> propertiesInfo;
}