whycxzp
2022-08-08 090fc1f6d92f438ba2bd5c124ab0b9715bd3cbbb
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
package com.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModelProperty;
import org.apache.ibatis.type.Alias;
 
@TableName(schema = "db_doc",value = "tb_component_product_approving")
@Alias("ComponentProductApproving")
public class ComponentProductApproving {
 
    private Integer id;
    @ApiModelProperty("散装件id")
    private Integer componentId;
    @ApiModelProperty("母料型号")
    private String parentModel;
    @ApiModelProperty("子件名称")
    private String subName;
    @ApiModelProperty("关联类型:-1(移除),1(关联),2(替换)")
    private Integer linkType;
    @ApiModelProperty("主表id")
    private Integer mainId;
 
    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 getMainId() {
        return mainId;
    }
 
    public void setMainId(Integer mainId) {
        this.mainId = mainId;
    }
 
    public Integer getLinkType() {
        return linkType;
    }
 
    public void setLinkType(Integer linkType) {
        this.linkType = linkType;
    }
}