| | |
| | | @Table("yeshi_ec_msg_invite")
|
| | | public class MsgInviteDetail {
|
| | | public enum MsgTypeInviteTypeEnum {
|
| | | invite("邀请消息"), exchangeCode("恭喜你,邀请码兑换成功"), receiveGift("领取礼品"),inviteNew("邀请消息-新版");
|
| | | invite("邀请消息","http://img.flqapp.com/resource/msg/icon_msg_invite.png"),
|
| | | exchangeCode("恭喜你,邀请码兑换成功","http://img.flqapp.com/resource/msg/icon_msg_invite.png"),
|
| | | receiveGift("领取礼品","http://img.flqapp.com/resource/msg/icon_msg_invite.png"),
|
| | | fansUpgrade("粉丝升级","http://img.flqapp.com/resource/msg/icon_msg_team_level.png"),
|
| | | fansDivorced("脱离提醒","http://img.flqapp.com/resource/msg/icon_msg_team_separate.png"),
|
| | | inviteSucceed("邀请提醒","http://img.flqapp.com/resource/msg/icon_msg_invite.png");
|
| | | |
| | | private final String desc;
|
| | |
|
| | | private MsgTypeInviteTypeEnum(String desc) {
|
| | | private final String icon;
|
| | | |
| | | private MsgTypeInviteTypeEnum(String desc, String icon) {
|
| | | this.desc = desc;
|
| | | this.icon = icon;
|
| | | }
|
| | |
|
| | | public String getDesc() {
|
| | | return desc;
|
| | | }
|
| | | |
| | | public String getIcon() {
|
| | | return icon;
|
| | | }
|
| | | }
|
| | |
|
| | |
| | | private Date createTime;
|
| | | @Column(name = "mi_update_time")
|
| | | private Date updateTime;
|
| | | |
| | | private String extraInfo;// 新版消息内容
|
| | |
|
| | | public Long getId() {
|
| | | return id;
|
| | |
| | | this.updateTime = updateTime;
|
| | | }
|
| | |
|
| | | public String getExtraInfo() {
|
| | | return extraInfo;
|
| | | }
|
| | |
|
| | | public void setExtraInfo(String extraInfo) {
|
| | | this.extraInfo = extraInfo;
|
| | | }
|
| | |
|
| | | }
|