yujian
2020-06-09 554de444b87aab5f93cb1593a8095612cf9479a7
fanli/src/main/java/com/yeshi/fanli/entity/bus/homemodule/SwiperPicture.java
@@ -17,9 +17,10 @@
 */
@Table("yeshi_ec_swiper_banner_picture")
public class SwiperPicture implements Serializable {
   private static final long serialVersionUID = 1L;
   @Expose
   @Column(name = "pic_id")
   private Long id;
@@ -36,16 +37,16 @@
   @Expose
   @Column(name = "pic_jumpid")
   private JumpDetailV2 jumpDetail;
   // 跳转参数
   @Expose
   @Column(name = "pic_params")
   private String params;
   // 跳转是否需要登陆
   @Column(name = "pic_jump_need_login")
   private boolean jumpNeedLogin;
   // 排序
   @Column(name = "pic_order")
   private Integer order;
@@ -60,12 +61,12 @@
   // 自动控制
   @Column(name = "pic_auto_control")
   private Integer autoControl;
   // 起始时间
   @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
   @Column(name = "pic_start_time")
   private Date startTime;
   // 结束时间
   @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
   @Column(name = "pic_end_time")
@@ -77,13 +78,34 @@
   @Column(name = "pic_updatetime")
   private Date updatetime;
   // 起始时间
   private String startTime_str;
   // 结束时间
   private String endTime_str;
   // 标题
   @Column(name = "pic_title")
   private String title;
   // 简介
   @Column(name = "pic_desc")
   private String desc;
   public String getTitle() {
      return title;
   }
   public void setTitle(String title) {
      this.title = title;
   }
   public String getDesc() {
      return desc;
   }
   public void setDesc(String desc) {
      this.desc = desc;
   }
   public Long getId() {
      return this.id;
   }