whycxzp
2022-08-10 d8ca9ccd14fe70e83bd586468cbc3db569f91de2
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
package com.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModelProperty;
import org.apache.ibatis.type.Alias;
 
import java.util.Date;
 
@TableName(schema = "db_doc",value = "tb_component_product_history")
@Alias("ComponentProductHistory")
public class ComponentProductHistory {
 
    private Integer id;
    @ApiModelProperty("散装件id")
    private Integer componentId;
    @ApiModelProperty("母料型号")
    private String parentModel;
    @ApiModelProperty("子件名称")
    private String subName;
    private Date createTime;
    @ApiModelProperty("关联类型:1(关联),2(替换)")
    private Integer linkType;
    private Integer sVersion;
    private Integer eVersion;
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public Integer getComponentId() {
        return componentId;
    }
 
    public void setComponentId(Integer componentId) {
        this.componentId = componentId;
    }
 
    public String getParentModel() {
        return parentModel;
    }
 
    public void setParentModel(String parentModel) {
        this.parentModel = parentModel;
    }
 
    public String getSubName() {
        return subName;
    }
 
    public void setSubName(String subName) {
        this.subName = subName;
    }
 
    public Integer getSVersion() {
        return sVersion;
    }
 
    public void setSVersion(Integer sVersion) {
        this.sVersion = sVersion;
    }
 
    public Integer getEVersion() {
        return eVersion;
    }
 
    public void setEVersion(Integer eVersion) {
        this.eVersion = eVersion;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Integer getLinkType() {
        return linkType;
    }
 
    public void setLinkType(Integer linkType) {
        this.linkType = linkType;
    }
 
}