| | |
| | | @Table("yeshi_ec_msg_account")
|
| | | public class MsgAccountDetail {
|
| | | public enum MsgTypeAccountTypeEnum {
|
| | | bingding("账号绑定"),
|
| | | cancelBinding("取消绑定"),
|
| | | bingdingChange("绑定更换"),
|
| | | update("账号修改"),
|
| | | level("账号等级"),
|
| | | connect("账号合并"),
|
| | | taoBaoAuthFail("账号绑定"),
|
| | | vipApply("账户升级"),
|
| | | vipPgrade("账户升级");
|
| | | 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_account.png");
|
| | | |
| | | private final String desc;
|
| | | private final String icon;
|
| | |
|
| | | private MsgTypeAccountTypeEnum(String desc) {
|
| | | 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_update_time")
|
| | | private Date updateTime;
|
| | |
|
| | | private String extraInfo;// 新版消息内容
|
| | | |
| | | public Long getId() {
|
| | | return id;
|
| | | }
|
| | |
| | | public void setBeiZhu(String beiZhu) {
|
| | | this.beiZhu = beiZhu;
|
| | | }
|
| | |
|
| | | public String getExtraInfo() {
|
| | | return extraInfo;
|
| | | }
|
| | |
|
| | | public void setExtraInfo(String extraInfo) {
|
| | | this.extraInfo = extraInfo;
|
| | | }
|
| | | }
|