whyclxw
3 天以前 bfa320956f20988fe671b0c4d25aa82fe766a98d
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
package com.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModelProperty;
import org.apache.ibatis.type.Alias;
 
import java.util.Date;
 
@TableName(value = "tb_technical_specification")
@Alias("TechnicalSpecification")
public class TechnicalSpecification {
 
    private Integer id;
 
    private String fileName;
    private String fileUrl;
    private String excelUrl;
    @ApiModelProperty("软件类型")
    private String type;
 
    private String version;
    @ApiModelProperty("软件基于版本")
    private String basedVersion;
 
    @ApiModelProperty("负责人")
    private String owner;
 
    @ApiModelProperty("归档日期")
    private String filingDate;
 
    @ApiModelProperty("适用机型-物料编码")
    private String applyMaterialCode;
 
    @ApiModelProperty("适用机型-规格型号")
    private String applyModel;
 
    @ApiModelProperty("适用机型-定制单号")
    private String applyCustomCode;
 
    @ApiModelProperty("发布说明")
    private String releaseNotes;
 
    private Date createTime;
 
    private String uploadUser;
 
    @ApiModelProperty("锁定状态")
    private int lockFlag;
 
    @TableField(exist = false)
    private int flag;
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public String getFileName() {
        return fileName;
    }
 
    public void setFileName(String fileName) {
        this.fileName = fileName;
    }
 
    public String getFileUrl() {
        return fileUrl;
    }
 
    public void setFileUrl(String fileUrl) {
        this.fileUrl = fileUrl;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public String getVersion() {
        return version;
    }
 
    public void setVersion(String version) {
        this.version = version;
    }
 
    public String getBasedVersion() {
        return basedVersion;
    }
 
    public void setBasedVersion(String basedVersion) {
        this.basedVersion = basedVersion;
    }
 
    public String getOwner() {
        return owner;
    }
 
    public void setOwner(String owner) {
        this.owner = owner;
    }
 
    public String getFilingDate() {
        return filingDate;
    }
 
    public void setFilingDate(String filingDate) {
        this.filingDate = filingDate;
    }
 
    public String getApplyMaterialCode() {
        return applyMaterialCode;
    }
 
    public void setApplyMaterialCode(String applyMaterialCode) {
        this.applyMaterialCode = applyMaterialCode;
    }
 
    public String getApplyModel() {
        return applyModel;
    }
 
    public void setApplyModel(String applyModel) {
        this.applyModel = applyModel;
    }
 
    public String getReleaseNotes() {
        return releaseNotes;
    }
 
    public void setReleaseNotes(String releaseNotes) {
        this.releaseNotes = releaseNotes;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public String getExcelUrl() {
        return excelUrl;
    }
 
    public void setExcelUrl(String excelUrl) {
        this.excelUrl = excelUrl;
    }
 
    public int getLockFlag() {
        return lockFlag;
    }
 
    public void setLockFlag(int lockFlag) {
        this.lockFlag = lockFlag;
    }
 
    public String getApplyCustomCode() {
        return applyCustomCode;
    }
 
    public void setApplyCustomCode(String applyCustomCode) {
        this.applyCustomCode = applyCustomCode;
    }
 
    public int getFlag() {
        return flag;
    }
 
    public void setFlag(int flag) {
        this.flag = flag;
    }
 
    public String getUploadUser() {
        return uploadUser;
    }
 
    public void setUploadUser(String uploadUser) {
        this.uploadUser = uploadUser;
    }
}