| | |
| | | @Table("yeshi_ec_common_order")
|
| | | public class CommonOrder {
|
| | |
|
| | | // 订单状态 1-付款,成功 2-结算(已收货) 3-维权 4-失效
|
| | | // 订单状态 1-付款,成功 2-结算(已收货) 3-维权 4-失效
|
| | | public final static int STATE_FK = 1;
|
| | | public final static int STATE_JS = 2;
|
| | | public final static int STATE_WQ = 3;
|
| | | public final static int STATE_SX = 4;
|
| | | |
| | |
|
| | | // 订单红包类型图片
|
| | | public final static String TYPE_FANLI = "http://ec-1255749512.file.myqcloud.com/resource/order/icon_fanli.png";
|
| | | public final static String TYPE_INVITE = "http://ec-1255749512.file.myqcloud.com/resource/order/icon_invite.png";
|
| | | public final static String TYPE_SHARE = "http://ec-1255749512.file.myqcloud.com/resource/order/icon_share.png";
|
| | | |
| | | |
| | |
|
| | | @Column(name = "co_id")
|
| | | private Long id;
|
| | |
|
| | |
| | | // 下单时间-第三方创建时间
|
| | | @Column(name = "co_third_create_time")
|
| | | private Date thirdCreateTime;
|
| | | |
| | |
|
| | | // 收货时间-结算时间
|
| | | @Column(name = "co_settle_time")
|
| | | private Date settleTime;
|
| | |
|
| | | @Column(name = "co_order_by")
|
| | | private Integer orderBy;// 子订单的排序值
|
| | |
|
| | | // 创建时间
|
| | | @Column(name = "co_create_time")
|
| | |
| | | // 更新时间
|
| | | @Column(name = "co_update_time")
|
| | | private Date updateTime;
|
| | | |
| | |
|
| | | public CommonOrder() {
|
| | |
|
| | | }
|
| | | |
| | |
|
| | | public CommonOrder(Long id) {
|
| | | this.id = id;
|
| | | }
|
| | |
| | | this.settleTime = settleTime;
|
| | | }
|
| | |
|
| | | public Integer getOrderBy() {
|
| | | return orderBy;
|
| | | }
|
| | |
|
| | | public void setOrderBy(Integer orderBy) {
|
| | | this.orderBy = orderBy;
|
| | | }
|
| | |
|
| | | public Date getCreateTime() {
|
| | | return createTime;
|
| | | }
|