提交 | 用户 | 时间
|
58d006
|
1 |
package com.mandi.fendan.persist; |
A |
2 |
|
|
3 |
import java.util.Date; |
|
4 |
|
|
5 |
import javax.persistence.Entity; |
|
6 |
import javax.persistence.Id; |
|
7 |
import javax.persistence.Table; |
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
@Entity |
|
12 |
@Table(name="bsheet_ecgb") |
|
13 |
public class BsheetEcgb { |
|
14 |
|
|
15 |
@Id |
|
16 |
private String bsNo; |
|
17 |
private Date ctime;//创建时间 |
|
18 |
private String cname;//创建人 |
|
19 |
private int sate;//状态 |
|
20 |
|
|
21 |
public String getBsNo() { |
|
22 |
return bsNo; |
|
23 |
} |
|
24 |
public void setBsNo(String bsNo) { |
|
25 |
this.bsNo = bsNo; |
|
26 |
} |
|
27 |
public Date getCtime() { |
|
28 |
return ctime; |
|
29 |
} |
|
30 |
public void setCtime(Date ctime) { |
|
31 |
this.ctime = ctime; |
|
32 |
} |
|
33 |
public String getCname() { |
|
34 |
return cname; |
|
35 |
} |
|
36 |
public void setCname(String cname) { |
|
37 |
this.cname = cname; |
|
38 |
} |
|
39 |
public int getSate() { |
|
40 |
return sate; |
|
41 |
} |
|
42 |
public void setSate(int sate) { |
|
43 |
this.sate = sate; |
|
44 |
} |
|
45 |
|
|
46 |
|
|
47 |
} |