88e030b7
王彪总
init project
|
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
|
package com.java110.dto.system;
import java.util.Date;
/**
* Created by wuxw on 2017/4/9.
*/
public class BusiOrderAttr {
//订单项ID
private String boId;
//属性编码,对应 Attr 表
private String attrCd;
//属性编码对应值
private String value;
//名称
private String name;
//创建时间
private Date create_dt;
public String getBoId() {
return boId;
}
public void setBoId(String boId) {
this.boId = boId;
}
public String getAttrCd() {
return attrCd;
}
public void setAttrCd(String attrCd) {
this.attrCd = attrCd;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
public Date getCreate_dt() {
return create_dt;
}
public void setCreate_dt(Date create_dt) {
this.create_dt = create_dt;
}
}
|