提交
This commit is contained in:
parent
ca865242f3
commit
858570ad40
@ -1,5 +1,6 @@
|
||||
package com.zbkj.common.model.home;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
@ -13,64 +14,64 @@ import java.util.List;
|
||||
@Data
|
||||
@TableName("eb_home")
|
||||
public class Home implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@TableId(value = "id", type = IdType.AUTO)
|
||||
private Integer id;
|
||||
/**
|
||||
* 名称
|
||||
*/
|
||||
private String name;
|
||||
/**
|
||||
* 标题
|
||||
*/
|
||||
private String title;
|
||||
/**
|
||||
* 排序
|
||||
*/
|
||||
private Integer orderNo;
|
||||
/**
|
||||
* 列表路径
|
||||
*/
|
||||
private String directUrl;
|
||||
/**
|
||||
* 是否有效 1:有效,0:无效
|
||||
*/
|
||||
private Integer delFlag;
|
||||
/**
|
||||
* 图片
|
||||
*/
|
||||
private String imgUrl;
|
||||
/**
|
||||
* 跳转id(list_ids/product_id)
|
||||
*/
|
||||
private String jumpIds;
|
||||
/**
|
||||
* 跳转类型1,列表0,详情
|
||||
*/
|
||||
private Integer jumpType;
|
||||
/**
|
||||
* 渠道:【1首页楼层,2套餐分类层】
|
||||
*/
|
||||
private Integer type;
|
||||
/**
|
||||
* 业务编号:【type=2 套餐分类(eb_category.id)】
|
||||
*/
|
||||
private Integer business;
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private Date createTime;
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
private Date updateTime;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@TableId(value = "id", type = IdType.AUTO)
|
||||
private Integer id;
|
||||
/**
|
||||
* 名称
|
||||
*/
|
||||
private String name;
|
||||
/**
|
||||
* 标题
|
||||
*/
|
||||
private String title;
|
||||
/**
|
||||
* 排序
|
||||
*/
|
||||
private Integer orderNo;
|
||||
/**
|
||||
* 列表路径
|
||||
*/
|
||||
private String directUrl;
|
||||
/**
|
||||
* 是否有效 1:有效,0:无效
|
||||
*/
|
||||
private Integer delFlag;
|
||||
/**
|
||||
* 图片
|
||||
*/
|
||||
private String imgUrl;
|
||||
/**
|
||||
* 跳转id(list_ids/product_id)
|
||||
*/
|
||||
private String jumpIds;
|
||||
/**
|
||||
* 跳转类型1,列表0,详情
|
||||
*/
|
||||
private Integer jumpType;
|
||||
/**
|
||||
* 渠道:【1首页楼层,2套餐分类层】
|
||||
*/
|
||||
private Integer type;
|
||||
/**
|
||||
* 业务编号:【type=2 套餐分类(eb_category.id)】
|
||||
*/
|
||||
private Integer business;
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private Date createTime;
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
private Date updateTime;
|
||||
|
||||
@Transient
|
||||
@TableField(exist = false)
|
||||
private List<HomeProducts> products;
|
||||
@Transient
|
||||
@TableField(exist = false)
|
||||
private List<HomeProducts> products;
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user