package com.ruoyi.management.api.model;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.ruoyi.common.core.annotation.Excel;
|
import com.ruoyi.common.core.web.domain.BaseEntity;
|
import com.ruoyi.common.core.web.domain.BaseModel;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
/**
|
* 公司门店对象 t_company_shop
|
*
|
* @author xiaochen
|
* @date 2023-06-07
|
*/
|
public class TCompanyShop extends BaseModel
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** $column.columnComment */
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/** 公司id */
|
@Excel(name = "公司id")
|
private Integer companyId;
|
|
/** 门店名称 */
|
@Excel(name = "门店名称")
|
private String shopName;
|
|
/** 负责人名称 */
|
@Excel(name = "负责人名称")
|
private String headName;
|
|
/** 负责人电话 */
|
@Excel(name = "负责人电话")
|
private String headPhone;
|
|
/** 省份 */
|
@Excel(name = "省份")
|
private String province;
|
|
/** 省份编码 */
|
@Excel(name = "省份编码")
|
private String provinceCode;
|
|
/** 城市 */
|
@Excel(name = "城市")
|
private String city;
|
|
/** 城市编码 */
|
@Excel(name = "城市编码")
|
private String cityCode;
|
|
/** 区县 */
|
@Excel(name = "区县")
|
private String district;
|
|
/** 区县编码 */
|
@Excel(name = "区县编码")
|
private String districtCode;
|
|
/** 详细地址 */
|
@Excel(name = "详细地址")
|
private String address;
|
|
/** 状态 1启用 0停用 */
|
@Excel(name = "状态 1启用 0停用")
|
private Integer state;
|
|
|
private String remark;
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
public void setId(Integer id)
|
{
|
this.id = id;
|
}
|
|
public Integer getId()
|
{
|
return id;
|
}
|
public void setCompanyId(Integer companyId)
|
{
|
this.companyId = companyId;
|
}
|
|
public Integer getCompanyId()
|
{
|
return companyId;
|
}
|
public void setShopName(String shopName)
|
{
|
this.shopName = shopName;
|
}
|
|
public String getShopName()
|
{
|
return shopName;
|
}
|
public void setHeadName(String headName)
|
{
|
this.headName = headName;
|
}
|
|
public String getHeadName()
|
{
|
return headName;
|
}
|
public void setHeadPhone(String headPhone)
|
{
|
this.headPhone = headPhone;
|
}
|
|
public String getHeadPhone()
|
{
|
return headPhone;
|
}
|
public void setProvince(String province)
|
{
|
this.province = province;
|
}
|
|
public String getProvince()
|
{
|
return province;
|
}
|
public void setProvinceCode(String provinceCode)
|
{
|
this.provinceCode = provinceCode;
|
}
|
|
public String getProvinceCode()
|
{
|
return provinceCode;
|
}
|
public void setCity(String city)
|
{
|
this.city = city;
|
}
|
|
public String getCity()
|
{
|
return city;
|
}
|
public void setCityCode(String cityCode)
|
{
|
this.cityCode = cityCode;
|
}
|
|
public String getCityCode()
|
{
|
return cityCode;
|
}
|
public void setDistrict(String district)
|
{
|
this.district = district;
|
}
|
|
public String getDistrict()
|
{
|
return district;
|
}
|
public void setDistrictCode(String districtCode)
|
{
|
this.districtCode = districtCode;
|
}
|
|
public String getDistrictCode()
|
{
|
return districtCode;
|
}
|
public void setAddress(String address)
|
{
|
this.address = address;
|
}
|
|
public String getAddress()
|
{
|
return address;
|
}
|
public void setState(Integer state)
|
{
|
this.state = state;
|
}
|
|
public Integer getState()
|
{
|
return state;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("companyId", getCompanyId())
|
.append("shopName", getShopName())
|
.append("headName", getHeadName())
|
.append("headPhone", getHeadPhone())
|
.append("province", getProvince())
|
.append("provinceCode", getProvinceCode())
|
.append("city", getCity())
|
.append("cityCode", getCityCode())
|
.append("district", getDistrict())
|
.append("districtCode", getDistrictCode())
|
.append("address", getAddress())
|
.append("state", getState())
|
.append("createBy", getCreateBy())
|
.append("updateBy", getUpdateBy())
|
.append("createTime", getCreateTime())
|
.append("updateTime", getUpdateTime())
|
.append("disabled", getDisabled())
|
.toString();
|
}
|
}
|