| | |
| | | @org.yeshi.utils.mybatis.Table("yeshi_ec_threeSale")
|
| | | public class ThreeSale {
|
| | |
|
| | | public static int EXPIRE_NORMAL = 0;// 正常状态
|
| | | public static int EXPIRE_OUTOFDATE = 1;// 过期状态
|
| | |
|
| | |
|
| | | @Id
|
| | | @GeneratedValue(strategy = GenerationType.AUTO)
|
| | | @Column(name = "id")
|
| | | private Long id;
|
| | |
|
| | | public ThreeSale(Long id) {
|
| | | this.id = id;
|
| | | }
|
| | | |
| | | public ThreeSale() {
|
| | | }
|
| | |
|
| | | @ManyToOne
|
| | | @JoinColumn(name = "boss_id")
|
| | |
| | |
|
| | | @Column(name = "updateTime")
|
| | | private Long updateTime;
|
| | | |
| | | @Transient |
| | |
|
| | | @Transient
|
| | | private ThreeSaleExtraInfo threeSaleExtraInfo;
|
| | |
|
| | | public Long getId() {
|