package com.matrix.system.hive.bean; import com.matrix.core.anotations.Extend; import com.matrix.core.pojo.EntityDTO; import java.io.Serializable; import java.math.BigDecimal; /** * * @date 2016-07-03 20:53 */ public class SysShopInfo extends EntityDTO { /** * 开启网店 */ public static final int OPEN_NET =1; /** * 关闭网店 */ public static final int CLOSE_NET =2; /** * 总部 */ public static final Integer SHOP_TYPE_ZONGBU = 1; /** * 门店 */ public static final Integer SHOP_TYPE_MENDIAN = 2; /** * 加盟店 */ public static final Integer SHOP_TYPE_JIAMENGDIAN = 3; /** * 序号 */ private Long id; /** * 门店编号 */ private String shopNo; /** * 门店名称 */ private String shopName; /** * 门店地址 */ private String shopAddr; /** * 门店热线 */ private String shopTel; /** * 门店描述 */ private String shopDes; /** * 门店图片附件 */ private String shopImag; /** * 经度 */ private String longitude; /** * 纬度 */ private String latitude; /** * 扩展字段 */ /** * 门店租金 */ private String rent; /** * 公司id */ private Long companyId; /** * 银行卡号 */ private String bankNo; private String bankName; private String bankOwnerName; /** * 门店小程序码 */ private String qrcode; private String shopShortName; /** * 门店类型1.总部,2.门店,3.加盟店 */ private Integer shopType; /** * 是否开启网店 1 是 2不是 */ private int isOpenNet; @Extend private BigDecimal distance; public int getIsOpenNet() { return isOpenNet; } public void setIsOpenNet(int isOpenNet) { this.isOpenNet = isOpenNet; } public Integer getShopType() { return shopType; } public void setShopType(Integer shopType) { this.shopType = shopType; } public String getShopShortName() { return shopShortName; } public void setShopShortName(String shopShortName) { this.shopShortName = shopShortName; } public String getQrcode() { return qrcode; } public void setQrcode(String qrcode) { this.qrcode = qrcode; } public String getBankName() { return bankName; } public void setBankName(String bankName) { this.bankName = bankName; } public String getBankOwnerName() { return bankOwnerName; } public void setBankOwnerName(String bankOwnerName) { this.bankOwnerName = bankOwnerName; } public Long getCompanyId() { return companyId; } public void setCompanyId(Long companyId) { this.companyId = companyId; } public String getRent() { return rent; } public void setRent(String rent) { this.rent = rent; } public Long getId() { return id; } public void setId(Long id) { this.id=id; } public String getShopNo() { return shopNo; } public void setShopNo(String shopNo) { this.shopNo=shopNo; } public String getShopName() { return shopName; } public void setShopName(String shopName) { this.shopName=shopName; } public String getShopAddr() { return shopAddr; } public void setShopAddr(String shopAddr) { this.shopAddr=shopAddr; } public String getShopTel() { return shopTel; } public void setShopTel(String shopTel) { this.shopTel=shopTel; } public String getShopDes() { return shopDes; } public void setShopDes(String shopDes) { this.shopDes=shopDes; } public String getShopImag() { return shopImag; } public void setShopImag(String shopImag) { this.shopImag=shopImag; } public String getLongitude() { return longitude; } public void setLongitude(String longitude) { this.longitude = longitude; } public String getLatitude() { return latitude; } public void setLatitude(String latitude) { this.latitude = latitude; } public String getBankNo() { return bankNo; } public void setBankNo(String bankNo) { this.bankNo = bankNo; } public BigDecimal getDistance() { return distance; } public void setDistance(BigDecimal distance) { this.distance = distance; } }