| | |
| | | *
|
| | | */
|
| | | @Table("yeshi_ec_apppage_notification")
|
| | | public class AppPageNotification implements Serializable{
|
| | | public class AppPageNotification implements Serializable {
|
| | | /**
|
| | | *
|
| | | */
|
| | |
| | | // 消息类型的枚举
|
| | | public enum AppPageNotificationTypeEnum {
|
| | | home("首页"), coupon("优惠券页"), invite("邀请有奖页"), activity("动态"), goodsDetail("详情过度页"), mine("我的"), money(
|
| | | "资金"), accountDetail("账户明细"), extract("提现"), orderFanli("返利订单"),orderTiCheng("提成订单"),orderTaoBao("淘宝订单"), coollect("收藏"), scanHistory("足迹"), team(
|
| | | "队员"), kefu("联系客服"), taoBaoShoppingCart("淘宝购物车"), orderFind("订单申诉"), msgCenter("消息中心");
|
| | | "资金"), accountDetail("账户明细"), extract("提现"), orderFanli("返利订单"), orderTiCheng("提成订单"), orderTaoBao(
|
| | | "淘宝订单"), coollect("收藏"), scanHistory("足迹"), team("队员"), kefu("联系客服"), taoBaoShoppingCart(
|
| | | "淘宝购物车"), orderFind("订单申诉"), msgCenter("消息中心"), newOrder("订单");
|
| | | private final String desc;
|
| | | |
| | |
|
| | | private AppPageNotificationTypeEnum(String desc) {
|
| | | this.desc = desc;
|
| | | }
|
| | |
| | | private AppPageNotificationTypeEnum type;// 类型
|
| | | @Column(name = "an_show")
|
| | | private Boolean show;// 是否显示
|
| | | |
| | |
|
| | | @Expose
|
| | | @Column(name = "an_can_close")
|
| | | private Boolean canClose;// 是否可以关闭
|
| | | |
| | |
|
| | | @Expose
|
| | | @Column(name = "an_content")
|
| | | private String content;// 内容
|
| | | |
| | |
|
| | | @Expose
|
| | | @Column(name = "an_content_url")
|
| | | private String contentUrl;// 链接
|
| | | |
| | |
|
| | | @Expose
|
| | | @Column(name = "an_md5")
|
| | | private String md5;// type+内容+链接的md5
|
| | |
| | | private Date updateTime;// 更新时间
|
| | |
|
| | | @Transient // 页面名称
|
| | | private String pageName; |
| | | |
| | | private String pageName;
|
| | |
|
| | | public Long getId() {
|
| | | return id;
|
| | | }
|