提交 | 用户 | 时间
|
58d006
|
1 |
package com.mandi.fendan.persist; |
A |
2 |
|
|
3 |
import java.io.Serializable; |
|
4 |
import java.util.Date; |
|
5 |
|
|
6 |
import javax.persistence.Entity; |
|
7 |
import javax.persistence.Id; |
|
8 |
import javax.persistence.Table; |
|
9 |
import javax.persistence.Temporal; |
|
10 |
import javax.persistence.TemporalType; |
|
11 |
import javax.persistence.UniqueConstraint; |
|
12 |
|
|
13 |
/** |
|
14 |
* @author cx |
|
15 |
* @version 创建时间:2017年10月23日 |
|
16 |
* 类说明 |
|
17 |
*/ |
|
18 |
@Entity |
|
19 |
@Table(name="fd_company",uniqueConstraints={@UniqueConstraint(columnNames={"companyNo"})}) |
|
20 |
public class Fd_Company implements Serializable { |
|
21 |
|
|
22 |
@Id |
|
23 |
private String id; |
|
24 |
private String cname; |
975c04
|
25 |
private String shortName; |
58d006
|
26 |
private String companyNo; |
A |
27 |
@Temporal(TemporalType.TIMESTAMP) |
|
28 |
private Date ctime; |
|
29 |
private String hdpinyin; |
|
30 |
private String name; |
|
31 |
private String note; |
|
32 |
private String pinyin; |
|
33 |
private boolean hasSPR;//是否可以操作自提单据 |
|
34 |
public String getId() { |
|
35 |
return id; |
|
36 |
} |
|
37 |
public void setId(String id) { |
|
38 |
this.id = id; |
|
39 |
} |
|
40 |
public String getCname() { |
|
41 |
return cname; |
|
42 |
} |
|
43 |
public void setCname(String cname) { |
|
44 |
this.cname = cname; |
|
45 |
} |
|
46 |
public String getCompanyNo() { |
|
47 |
return companyNo; |
|
48 |
} |
|
49 |
public void setCompanyNo(String companyNo) { |
|
50 |
this.companyNo = companyNo; |
|
51 |
} |
|
52 |
public Date getCtime() { |
|
53 |
return ctime; |
|
54 |
} |
|
55 |
public void setCtime(Date ctime) { |
|
56 |
this.ctime = ctime; |
|
57 |
} |
|
58 |
public String getHdpinyin() { |
|
59 |
return hdpinyin; |
|
60 |
} |
|
61 |
public void setHdpinyin(String hdpinyin) { |
|
62 |
this.hdpinyin = hdpinyin; |
|
63 |
} |
|
64 |
public String getName() { |
|
65 |
return name; |
|
66 |
} |
|
67 |
public void setName(String name) { |
|
68 |
this.name = name; |
|
69 |
} |
|
70 |
public String getNote() { |
|
71 |
return note; |
|
72 |
} |
|
73 |
public void setNote(String note) { |
|
74 |
this.note = note; |
|
75 |
} |
|
76 |
public String getPinyin() { |
|
77 |
return pinyin; |
|
78 |
} |
|
79 |
public void setPinyin(String pinyin) { |
|
80 |
this.pinyin = pinyin; |
|
81 |
} |
|
82 |
public boolean isHasSPR() { |
|
83 |
return hasSPR; |
|
84 |
} |
|
85 |
public void setHasSPR(boolean hasSPR) { |
|
86 |
this.hasSPR = hasSPR; |
|
87 |
} |
975c04
|
88 |
|
H |
89 |
public String getShortName() { |
|
90 |
return shortName; |
|
91 |
} |
|
92 |
|
|
93 |
public void setShortName(String shortName) { |
|
94 |
this.shortName = shortName; |
|
95 |
} |
58d006
|
96 |
} |