Attrs.java
665 Bytes
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
package com.java110.dto.system;
/**
* @author wux
* @create 2019-02-05 上午11:20
* @desc 订单属性 对应 表c_orders_attrs
**/
public class Attrs {
private String attrId;
private String specCd;
private String value;
public String getAttrId() {
return attrId;
}
public void setAttrId(String attrId) {
this.attrId = attrId;
}
public String getSpecCd() {
return specCd;
}
public void setSpecCd(String specCd) {
this.specCd = specCd;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}