whyclxw
3 天以前 10c3d3300cce0ccef45b9db8865b61999385158b
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
package com.whyc.pojo;
 
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 io.swagger.annotations.ApiModelProperty;
import org.apache.ibatis.type.Alias;
 
import java.util.Date;
import java.util.List;
 
/**
 *
 * 产品审批
 */
 
@Alias("ProductApproving")
@TableName(value = "tb_product_approving")
public class ProductApproving {
 
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    private Integer mainId;
 
    private String parentCode;
 
    private String parentName;
 
    private String parentModel;
 
    @ApiModelProperty(value = "备注")
    private String notes;
 
    @ApiModelProperty("定制表单号")
    private String customCode;
 
    private Date createTime;
 
    @ApiModelProperty("文件夹路径,绝对路径")
    private String fileUrl;
 
    @TableField(exist = false)
    private List<ProductBomApproving> bomApprovingList;
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public Integer getMainId() {
        return mainId;
    }
 
    public void setMainId(Integer mainId) {
        this.mainId = mainId;
    }
 
    public String getParentCode() {
        return parentCode;
    }
 
    public void setParentCode(String parentCode) {
        this.parentCode = parentCode;
    }
 
    public String getParentName() {
        return parentName;
    }
 
    public void setParentName(String parentName) {
        this.parentName = parentName;
    }
 
    public String getParentModel() {
        return parentModel;
    }
 
    public void setParentModel(String parentModel) {
        this.parentModel = parentModel;
    }
 
    public String getNotes() {
        return notes;
    }
 
    public void setNotes(String notes) {
        this.notes = notes;
    }
 
    public String getCustomCode() {
        return customCode;
    }
 
    public void setCustomCode(String customCode) {
        this.customCode = customCode;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public List<ProductBomApproving> getBomApprovingList() {
        return bomApprovingList;
    }
 
    public void setBomApprovingList(List<ProductBomApproving> bomApprovingList) {
        this.bomApprovingList = bomApprovingList;
    }
 
    public String getFileUrl() {
        return fileUrl;
    }
 
    public void setFileUrl(String fileUrl) {
        this.fileUrl = fileUrl;
    }
}