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
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(value = "tb_product_software")
@Alias("ProductSoftware")
public class ProductSoftware {
 
    private Integer id;
 
    private String parentModel;
 
    private String softwareName;
 
    private String softwareUrl;
 
    @ApiModelProperty("软件版本提交审批时间")
    private Date submitTime;
    @ApiModelProperty("软件版本生效时间")
    private Date createTime;
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public String getParentModel() {
        return parentModel;
    }
 
    public void setParentModel(String parentModel) {
        this.parentModel = parentModel;
    }
 
    public String getSoftwareName() {
        return softwareName;
    }
 
    public void setSoftwareName(String softwareName) {
        this.softwareName = softwareName;
    }
 
    public String getSoftwareUrl() {
        return softwareUrl;
    }
 
    public void setSoftwareUrl(String softwareUrl) {
        this.softwareUrl = softwareUrl;
    }
 
    public Date getSubmitTime() {
        return submitTime;
    }
 
    public void setSubmitTime(Date submitTime) {
        this.submitTime = submitTime;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
}