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/MsgAccountDetail.java | 274 +++++++++++++++++++++++++++++------------------------- 1 files changed, 147 insertions(+), 127 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/entity/bus/msg/MsgAccountDetail.java b/fanli/src/main/java/com/yeshi/fanli/entity/bus/msg/MsgAccountDetail.java index 6986832..f0361b3 100644 --- a/fanli/src/main/java/com/yeshi/fanli/entity/bus/msg/MsgAccountDetail.java +++ b/fanli/src/main/java/com/yeshi/fanli/entity/bus/msg/MsgAccountDetail.java @@ -1,127 +1,147 @@ -package com.yeshi.fanli.entity.bus.msg; - -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_account") -public class MsgAccountDetail { - public enum MsgTypeAccountTypeEnum { - bingding("璐﹀彿缁戝畾"), - cancelBinding("鍙栨秷缁戝畾"), - bingdingChange("缁戝畾鏇存崲"), - update("璐﹀彿淇敼"), - level("璐﹀彿绛夌骇"), - connect("璐﹀彿鍚堝苟"), - taoBaoAuthFail("璐﹀彿缁戝畾"); - private final String desc; - - private MsgTypeAccountTypeEnum(String desc) { - this.desc = desc; - } - - public String getDesc() { - return desc; - } - } - - @Column(name = "ma_id") - private Long id; - @Column(name = "ma_uid") - private UserInfo user; - @Column(name = "ma_type") - private MsgTypeAccountTypeEnum type;// 绫诲瀷 - @Column(name = "ma_title") - private String title;// 浜嬮」 - @Column(name = "ma_content") - private String content;// 鐘舵�� - @Column(name = "ma_beizhu") - private String beiZhu;// 澶囨敞 - @Column(name = "ma_read") - private Boolean read; - @Column(name = "ma_create_time") - private Date createTime; - @Column(name = "ma_update_time") - private Date updateTime; - - public Long getId() { - return id; - } - - public void setId(Long id) { - this.id = id; - } - - 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 UserInfo getUser() { - return user; - } - - public void setUser(UserInfo user) { - this.user = user; - } - - public String getTitle() { - return title; - } - - public void setTitle(String title) { - this.title = title; - } - - public String getContent() { - return content; - } - - public void setContent(String content) { - this.content = content; - } - - public MsgTypeAccountTypeEnum getType() { - return type; - } - - public void setType(MsgTypeAccountTypeEnum type) { - this.type = type; - } - - public String getBeiZhu() { - return beiZhu; - } - - public void setBeiZhu(String beiZhu) { - this.beiZhu = beiZhu; - } -} +package com.yeshi.fanli.entity.bus.msg; + +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_account") +public class MsgAccountDetail { + public enum MsgTypeAccountTypeEnum { + bingding("璐﹀彿缁戝畾", "http://img.flqapp.com/resource/msg/icon_msg_account.png"), + cancelBinding("鍙栨秷缁戝畾", "http://img.flqapp.com/resource/msg/icon_msg_account.png"), + bingdingChange("缁戝畾鏇存崲", "http://img.flqapp.com/resource/msg/icon_msg_account.png"), + update("璐﹀彿淇敼", "http://img.flqapp.com/resource/msg/icon_msg_account.png"), + level("璐﹀彿绛夌骇", "http://img.flqapp.com/resource/msg/icon_msg_account.png"), + connect("璐﹀彿鍚堝苟", "http://img.flqapp.com/resource/msg/icon_msg_account.png"), + taoBaoAuthFail("璐﹀彿缁戝畾", "http://img.flqapp.com/resource/msg/icon_msg_account.png"), + changeCode("璐﹀彿淇敼", "http://img.flqapp.com/resource/msg/icon_msg_account.png"), + vipApply("璐︽埛鍗囩骇", "http://img.flqapp.com/resource/msg/icon_msg_account.png"), + vipPgrade("绛夌骇鎴愰暱","http://img.flqapp.com/resource/msg/icon_msg_level.png"); + + private final String desc; + private final String icon; + + private MsgTypeAccountTypeEnum(String desc, String icon) { + this.desc = desc; + this.icon = icon; + } + + public String getDesc() { + return desc; + } + + public String getIcon() { + return icon; + } + } + + @Column(name = "ma_id") + private Long id; + @Column(name = "ma_uid") + private UserInfo user; + @Column(name = "ma_type") + private MsgTypeAccountTypeEnum type;// 绫诲瀷 + @Column(name = "ma_title") + private String title;// 浜嬮」 + @Column(name = "ma_content") + private String content;// 鐘舵�� + @Column(name = "ma_beizhu") + private String beiZhu;// 澶囨敞 + @Column(name = "ma_read") + private Boolean read; + @Column(name = "ma_create_time") + private Date createTime; + @Column(name = "ma_update_time") + private Date updateTime; + + private String extraInfo;// 鏂扮増娑堟伅鍐呭 + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + 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 UserInfo getUser() { + return user; + } + + public void setUser(UserInfo user) { + this.user = user; + } + + public String getTitle() { + return title; + } + + public void setTitle(String title) { + this.title = title; + } + + public String getContent() { + return content; + } + + public void setContent(String content) { + this.content = content; + } + + public MsgTypeAccountTypeEnum getType() { + return type; + } + + public void setType(MsgTypeAccountTypeEnum type) { + this.type = type; + } + + public String getBeiZhu() { + return beiZhu; + } + + public void setBeiZhu(String beiZhu) { + this.beiZhu = beiZhu; + } + + public String getExtraInfo() { + return extraInfo; + } + + public void setExtraInfo(String extraInfo) { + this.extraInfo = extraInfo; + } +} -- Gitblit v1.8.0