yujian
2019-01-22 88b54772dbcf5ecab1e2316e4e4626ac901b8908
fanli/src/main/java/com/yeshi/fanli/entity/bus/help/AppPageNotification.java
@@ -17,7 +17,7 @@
 *
 */
@Table("yeshi_ec_apppage_notification")
public class AppPageNotification implements Serializable{
public class AppPageNotification implements Serializable {
   /**
    * 
    */
@@ -26,10 +26,12 @@
   // 消息类型的枚举
   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("订单"), shareHistory("分享记录"), goodsStorage("选品库");
      private final String desc;
      private AppPageNotificationTypeEnum(String desc) {
         this.desc = desc;
      }
@@ -45,19 +47,19 @@
   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
@@ -67,8 +69,8 @@
   private Date updateTime;// 更新时间
   @Transient // 页面名称
   private String pageName;
   private String pageName;
   public Long getId() {
      return id;
   }