| | |
| | | package com.yeshi.fanli.entity.bus.clazz;
|
| | |
|
| | | import java.io.Serializable;
|
| | | import java.util.List;
|
| | |
|
| | | import org.yeshi.utils.mybatis.Column;
|
| | | import org.yeshi.utils.mybatis.Table;
|
| | |
|
| | | import com.yeshi.fanli.entity.system.BusinessSystem;
|
| | | import com.google.gson.annotations.Expose;
|
| | |
|
| | | /**
|
| | | * 商品分类
|
| | |
| | | */
|
| | | private static final long serialVersionUID = 1L;
|
| | |
|
| | | @Expose
|
| | | @Column(name = "id")
|
| | | private Long id;
|
| | |
|
| | | @Expose
|
| | | @Column(name = "name")
|
| | | private String name;
|
| | |
|
| | | @Expose
|
| | | @Column(name = "picture")
|
| | | private String picture;
|
| | |
|
| | | @Expose
|
| | | @Column(name = "url")
|
| | | private String url;
|
| | |
|
| | |
| | | @Column(name = "android_click")
|
| | | private Long androidClick;
|
| | |
|
| | | // 状态
|
| | | @Column(name = "cs_state")
|
| | | private Integer state;
|
| | | |
| | |
|
| | | // 点击次数
|
| | | private Long countClick = 0l;
|
| | | // 关联标签数量
|
| | | private int countlabel = 0;
|
| | | // 系统关联列表
|
| | | private List<BusinessSystem> systemList;
|
| | |
|
| | |
|
| | | public GoodsClass() {
|
| | |
| | | this.countlabel = countlabel;
|
| | | }
|
| | |
|
| | | public List<BusinessSystem> getSystemList() {
|
| | | return systemList;
|
| | | public Integer getState() {
|
| | | return state;
|
| | | }
|
| | |
|
| | | public void setSystemList(List<BusinessSystem> systemList) {
|
| | | this.systemList = systemList;
|
| | | public void setState(Integer state) {
|
| | | this.state = state;
|
| | | }
|
| | | |
| | | |
| | |
|
| | | }
|