| | |
| | | public final static int STATE_SX = 4;// 未付款/已退款
|
| | |
|
| | | public enum MsgTypeOrderTypeEnum {
|
| | | fanli("订单统计", "http://img.flqapp.com/resource/msg/icon_msg_order.png"),
|
| | | share("订单统计", "http://img.flqapp.com/resource/msg/icon_msg_order.png"), |
| | | invite("订单统计", "http://img.flqapp.com/resource/msg/icon_msg_order.png"), |
| | | fanli("返利订单", "http://img.flqapp.com/resource/msg/icon_msg_order.png"),
|
| | | share("分享订单", "http://img.flqapp.com/resource/msg/icon_msg_order.png"), |
| | | invite("团队订单", "http://img.flqapp.com/resource/msg/icon_msg_order.png"), |
| | | found("订单找回", "http://img.flqapp.com/resource/msg/icon_msg_order.png"), // 老版
|
| | | foundSucceed("订单找回", "http://img.flqapp.com/resource/msg/icon_msg_order.png"),
|
| | | foundFail("订单找回", "http://img.flqapp.com/resource/msg/icon_msg_order.png"),
|
| | | orderStatistics("订单统计", "http://img.flqapp.com/resource/msg/icon_msg_order.png"), |
| | | orderShare("订单统计", "http://img.flqapp.com/resource/msg/icon_msg_order.png"), |
| | | orderInvite("订单统计", "http://img.flqapp.com/resource/msg/icon_msg_order.png"), |
| | | businessRunning("订单失效", "http://img.flqapp.com/resource/msg/icon_msg_order.png"),
|
| | | elme("饿了么订单", "http://img.flqapp.com/resource/msg/icon_msg_order.png");
|
| | |
|
| | | private final String desc;
|
| | |
| | | private Date createTime;
|
| | | @Column(name = "mo_update_time")
|
| | | private Date updateTime;
|
| | | // 唯一索引
|
| | | @Column(name = "mo_unique_key")
|
| | | private String uniquekey;
|
| | |
|
| | | private String extraInfo;// 新版消息内容
|
| | |
|
| | |
| | | public void setExtraInfo(String extraInfo) {
|
| | | this.extraInfo = extraInfo;
|
| | | }
|
| | | |
| | |
|
| | | public String getUniquekey() {
|
| | | return uniquekey;
|
| | | }
|
| | |
|
| | | public void setUniquekey(String uniquekey) {
|
| | | this.uniquekey = uniquekey;
|
| | | }
|
| | | |
| | | }
|