package com.dsh.competition.feignclient.other.model;
|
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
/**
|
* @author zhibing.pu
|
* @date 2023/6/29 10:09
|
*/
|
@Data
|
public class Store {
|
private Integer id;
|
/**
|
* 门店名称
|
*/
|
private String name;
|
/**
|
* 门店店长id
|
*/
|
private Integer storeStaffId;
|
/**
|
* 城市管理员id
|
*/
|
private Integer cityManagerId;
|
/**
|
* 省
|
*/
|
private String province;
|
/**
|
* 省编号
|
*/
|
private String provinceCode;
|
/**
|
* 市
|
*/
|
private String city;
|
/**
|
* 市编号
|
*/
|
private String cityCode;
|
/**
|
* 联系电话
|
*/
|
private String phone;
|
/**
|
* 详细地址
|
*/
|
private String address;
|
/**
|
* 纬度
|
*/
|
private String lat;
|
/**
|
* 经度
|
*/
|
private String lon;
|
/**
|
* 营业开始时间
|
*/
|
private String startTime;
|
/**
|
* 营业结束时间
|
*/
|
private String endTime;
|
/**
|
* 封面图
|
*/
|
private String coverDrawing;
|
/**
|
* 实景图
|
*/
|
private String realPicture;
|
/**
|
* 门店介绍
|
*/
|
private String introduce;
|
/**
|
* 福利图片
|
*/
|
private String welfarePicture;
|
/**
|
* 评分
|
*/
|
private BigDecimal score;
|
/**
|
* 状态(1=正常,2=冻结,3=删除)
|
*/
|
private Integer state;
|
}
|