package com.xzx.gc.model.admin;
|
|
import com.xzx.gc.model.admin.baseModel.BaseModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* banner model
|
*/
|
@Data
|
public class BannerModel extends BaseModel {
|
|
|
Integer id;
|
/**
|
*
|
*/
|
@ApiModelProperty(value="图片名字",required=true)
|
String picName;
|
/**
|
*
|
*/
|
@ApiModelProperty(value="图片路径",required=true)
|
String picPath;
|
/**
|
*
|
*/
|
@ApiModelProperty(value="图片链接",required=true)
|
String picUrl;
|
/**
|
* 排序
|
*/
|
@ApiModelProperty(value="排序",required=true)
|
String sort;
|
/**
|
* 删除标记
|
*/
|
@ApiModelProperty(value="删除标记(0:正常,1:删除)",required=true)
|
String delFlag;
|
/**
|
* 创建时间
|
*/
|
@ApiModelProperty(value="创建时间",required=true)
|
String createTime;
|
|
String cityId;
|
|
String partnerId;
|
|
String partnerName;
|
|
List<String> townIdList;
|
|
String townId;
|
|
int page;
|
|
int limit;
|
|
}
|