From 30d8e227e8d823b6c38c3b9c90ac2df03b63befe Mon Sep 17 00:00:00 2001
From: admin <weikou2014>
Date: 星期二, 25 二月 2025 16:41:22 +0800
Subject: [PATCH] 淘宝转链接口更新

---
 fanli/src/main/java/com/yeshi/fanli/entity/bus/msg/MsgOrderDetail.java |  394 ++++++++++++++++++++++++++++++-------------------------
 1 files changed, 216 insertions(+), 178 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/entity/bus/msg/MsgOrderDetail.java b/fanli/src/main/java/com/yeshi/fanli/entity/bus/msg/MsgOrderDetail.java
index c48147b..fc9624b 100644
--- a/fanli/src/main/java/com/yeshi/fanli/entity/bus/msg/MsgOrderDetail.java
+++ b/fanli/src/main/java/com/yeshi/fanli/entity/bus/msg/MsgOrderDetail.java
@@ -1,178 +1,216 @@
-package com.yeshi.fanli.entity.bus.msg;
-
-import java.math.BigDecimal;
-import java.util.Date;
-
-import org.yeshi.utils.mybatis.Column;
-import org.yeshi.utils.mybatis.Table;
-
-import com.yeshi.fanli.entity.bus.user.UserInfo;
-
-/***
- * 璁㈠崟绫诲瀷鐨勬秷鎭�
- * 
- * @author Administrator
- *
- */
-@Table("yeshi_ec_msg_order")
-public class MsgOrderDetail {
-	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 enum MsgTypeOrderTypeEnum {
-		fanli("杩斿埄璁㈠崟"), share("鍒嗕韩璁㈠崟"), invite("閭�璇疯鍗�"), found("璁㈠崟鎵惧洖"),elme("楗夸簡涔堣鍗�");
-		private final String desc;
-
-		private MsgTypeOrderTypeEnum(String desc) {
-			this.desc = desc;
-		}
-
-		public String getDesc() {
-			return desc;
-		}
-	}
-
-	@Column(name = "mo_id")
-	private Long id;
-	@Column(name = "mo_uid")
-	private UserInfo user;
-	@Column(name = "mo_type")
-	private MsgTypeOrderTypeEnum type;// 娑堟伅绫诲瀷
-	@Column(name = "mo_order_id")
-	private String orderId;// 璁㈠崟鍙�
-	@Column(name = "mo_order_type")
-	private Integer orderType;// 璁㈠崟绫诲瀷
-	@Column(name = "mo_state")
-	private Integer state;// 鐘舵��
-	@Column(name = "mo_goods_count")
-	private Integer goodsCount;// 鍟嗗搧鏁伴噺
-	@Column(name = "mo_pay_money")
-	private BigDecimal payMoney;// 浠樻閲戦
-	@Column(name = "mo_hongbao_money")
-	private BigDecimal hongBaoMoney;// 浣i噾
-	@Column(name = "mo_happen_date")
-	private Date happendDate;// 鍙戠敓鏃堕棿
-	@Column(name = "mo_beizhu")
-	private String beiZhu;
-	@Column(name = "mo_read")
-	private Boolean read;// 鏄惁宸茶
-	@Column(name = "mo_create_time")
-	private Date createTime;
-	@Column(name = "mo_update_time")
-	private Date updateTime;
-
-	public Long getId() {
-		return id;
-	}
-
-	public void setId(Long id) {
-		this.id = id;
-	}
-
-	public UserInfo getUser() {
-		return user;
-	}
-
-	public void setUser(UserInfo user) {
-		this.user = user;
-	}
-
-	public MsgTypeOrderTypeEnum getType() {
-		return type;
-	}
-
-	public void setType(MsgTypeOrderTypeEnum type) {
-		this.type = type;
-	}
-
-	public String getOrderId() {
-		return orderId;
-	}
-
-	public void setOrderId(String orderId) {
-		this.orderId = orderId;
-	}
-
-	public Integer getState() {
-		return state;
-	}
-
-	public void setState(Integer state) {
-		this.state = state;
-	}
-
-	public Integer getGoodsCount() {
-		return goodsCount;
-	}
-
-	public void setGoodsCount(Integer goodsCount) {
-		this.goodsCount = goodsCount;
-	}
-
-	public BigDecimal getPayMoney() {
-		return payMoney;
-	}
-
-	public void setPayMoney(BigDecimal payMoney) {
-		this.payMoney = payMoney;
-	}
-
-	public BigDecimal getHongBaoMoney() {
-		return hongBaoMoney;
-	}
-
-	public void setHongBaoMoney(BigDecimal hongBaoMoney) {
-		this.hongBaoMoney = hongBaoMoney;
-	}
-
-	public String getBeiZhu() {
-		return beiZhu;
-	}
-
-	public void setBeiZhu(String beiZhu) {
-		this.beiZhu = beiZhu;
-	}
-
-	public Boolean getRead() {
-		return read;
-	}
-
-	public void setRead(Boolean read) {
-		this.read = read;
-	}
-
-	public Date getCreateTime() {
-		return createTime;
-	}
-
-	public void setCreateTime(Date createTime) {
-		this.createTime = createTime;
-	}
-
-	public Date getUpdateTime() {
-		return updateTime;
-	}
-
-	public void setUpdateTime(Date updateTime) {
-		this.updateTime = updateTime;
-	}
-
-	public Date getHappendDate() {
-		return happendDate;
-	}
-
-	public void setHappendDate(Date happendDate) {
-		this.happendDate = happendDate;
-	}
-
-	public Integer getOrderType() {
-		return orderType;
-	}
-
-	public void setOrderType(Integer orderType) {
-		this.orderType = orderType;
-	}
-
-}
+package com.yeshi.fanli.entity.bus.msg;
+
+import java.math.BigDecimal;
+import java.util.Date;
+
+import org.yeshi.utils.generater.mybatis.Column;
+import org.yeshi.utils.generater.mybatis.Table;
+
+import com.yeshi.fanli.entity.bus.user.UserInfo;
+
+/***
+ * 璁㈠崟绫诲瀷鐨勬秷鎭�
+ * 
+ * @author Administrator
+ *
+ */
+@Table("yeshi_ec_msg_order")
+public class MsgOrderDetail {
+	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 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"), 
+		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 final String icon;
+
+		private MsgTypeOrderTypeEnum(String desc, String icon) {
+			this.desc = desc;
+			this.icon = icon;
+		}
+
+		public String getDesc() {
+			return desc;
+		}
+		
+		public String getIcon() {
+			return icon;
+		}
+	}
+
+	@Column(name = "mo_id")
+	private Long id;
+	@Column(name = "mo_uid")
+	private UserInfo user;
+	@Column(name = "mo_type")
+	private MsgTypeOrderTypeEnum type;// 娑堟伅绫诲瀷
+	@Column(name = "mo_order_id")
+	private String orderId;// 璁㈠崟鍙�
+	@Column(name = "mo_order_type")
+	private Integer orderType;// 璁㈠崟绫诲瀷
+	@Column(name = "mo_state")
+	private Integer state;// 鐘舵��
+	@Column(name = "mo_goods_count")
+	private Integer goodsCount;// 鍟嗗搧鏁伴噺
+	@Column(name = "mo_pay_money")
+	private BigDecimal payMoney;// 浠樻閲戦
+	@Column(name = "mo_hongbao_money")
+	private BigDecimal hongBaoMoney;// 浣i噾
+	@Column(name = "mo_happen_date")
+	private Date happendDate;// 鍙戠敓鏃堕棿
+	@Column(name = "mo_beizhu")
+	private String beiZhu;
+	@Column(name = "mo_read")
+	private Boolean read;// 鏄惁宸茶
+	@Column(name = "mo_create_time")
+	private Date createTime;
+	@Column(name = "mo_update_time")
+	private Date updateTime;
+	// 鍞竴绱㈠紩
+	@Column(name = "mo_unique_key")
+	private String uniquekey;
+	
+	private String extraInfo;// 鏂扮増娑堟伅鍐呭
+
+	public Long getId() {
+		return id;
+	}
+
+	public void setId(Long id) {
+		this.id = id;
+	}
+
+	public UserInfo getUser() {
+		return user;
+	}
+
+	public void setUser(UserInfo user) {
+		this.user = user;
+	}
+
+	public MsgTypeOrderTypeEnum getType() {
+		return type;
+	}
+
+	public void setType(MsgTypeOrderTypeEnum type) {
+		this.type = type;
+	}
+
+	public String getOrderId() {
+		return orderId;
+	}
+
+	public void setOrderId(String orderId) {
+		this.orderId = orderId;
+	}
+
+	public Integer getState() {
+		return state;
+	}
+
+	public void setState(Integer state) {
+		this.state = state;
+	}
+
+	public Integer getGoodsCount() {
+		return goodsCount;
+	}
+
+	public void setGoodsCount(Integer goodsCount) {
+		this.goodsCount = goodsCount;
+	}
+
+	public BigDecimal getPayMoney() {
+		return payMoney;
+	}
+
+	public void setPayMoney(BigDecimal payMoney) {
+		this.payMoney = payMoney;
+	}
+
+	public BigDecimal getHongBaoMoney() {
+		return hongBaoMoney;
+	}
+
+	public void setHongBaoMoney(BigDecimal hongBaoMoney) {
+		this.hongBaoMoney = hongBaoMoney;
+	}
+
+	public String getBeiZhu() {
+		return beiZhu;
+	}
+
+	public void setBeiZhu(String beiZhu) {
+		this.beiZhu = beiZhu;
+	}
+
+	public Boolean getRead() {
+		return read;
+	}
+
+	public void setRead(Boolean read) {
+		this.read = read;
+	}
+
+	public Date getCreateTime() {
+		return createTime;
+	}
+
+	public void setCreateTime(Date createTime) {
+		this.createTime = createTime;
+	}
+
+	public Date getUpdateTime() {
+		return updateTime;
+	}
+
+	public void setUpdateTime(Date updateTime) {
+		this.updateTime = updateTime;
+	}
+
+	public Date getHappendDate() {
+		return happendDate;
+	}
+
+	public void setHappendDate(Date happendDate) {
+		this.happendDate = happendDate;
+	}
+
+	public Integer getOrderType() {
+		return orderType;
+	}
+
+	public void setOrderType(Integer orderType) {
+		this.orderType = orderType;
+	}
+
+	public String getExtraInfo() {
+		return extraInfo;
+	}
+
+	public void setExtraInfo(String extraInfo) {
+		this.extraInfo = extraInfo;
+	}
+
+	public String getUniquekey() {
+		return uniquekey;
+	}
+
+	public void setUniquekey(String uniquekey) {
+		this.uniquekey = uniquekey;
+	}
+	
+}

--
Gitblit v1.8.0