| | |
| | | public final static int STATE_JS = 2;
|
| | | public final static int STATE_WQ = 3;
|
| | | public final static int STATE_SX = 4;
|
| | |
|
| | | |
| | | // 整个订单状态 1-有效 2-部分有效/失效 3-失效
|
| | | public final static int STATE_WHOLE_ORDER_YOUXIAO = 1;
|
| | | public final static int STATE_WHOLE_ORDER_BUFENYOUXIAO = 2;
|
| | | public final static int STATE_WHOLE_ORDER_SHIXIAO = 3;
|
| | | |
| | | |
| | | // 订单红包类型图片
|
| | | 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";
|
| | |
| | | @Column(name = "co_state")
|
| | | private Integer state;
|
| | |
|
| | | // 整个订单状态:有效 、 部分有效/失效 、 失效
|
| | | @Expose
|
| | | @Column(name = "co_state_whole_order")
|
| | | private Integer stateWholeOrder;
|
| | | |
| | | // 效果预估
|
| | | @Column(name = "co_estimate")
|
| | | private BigDecimal estimate;
|
| | |
| | | this.updateTime = updateTime;
|
| | | }
|
| | |
|
| | | public Integer getStateWholeOrder() {
|
| | | return stateWholeOrder;
|
| | | }
|
| | |
|
| | | public void setStateWholeOrder(Integer stateWholeOrder) {
|
| | | this.stateWholeOrder = stateWholeOrder;
|
| | | }
|
| | |
|
| | | }
|