|
@@ -2,7 +2,7 @@ package com.dderp.common.entity.store;
|
|
|
|
|
|
|
|
import com.dderp.common.entity.base.BaseEntity;
|
|
import com.dderp.common.entity.base.BaseEntity;
|
|
|
import com.dderp.common.entity.geo.GeoPoiLocation;
|
|
import com.dderp.common.entity.geo.GeoPoiLocation;
|
|
|
-import com.dderp.common.entity.site.ERPTokenUser;
|
|
|
|
|
|
|
+import com.dderp.common.entity.system.LoginUser;
|
|
|
import com.sweetfish.util.Comment;
|
|
import com.sweetfish.util.Comment;
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.ArrayList;
|
|
@@ -26,6 +26,9 @@ public class StoreInfo extends BaseEntity {
|
|
|
@Comment("门店类型--此处取字典值即可")
|
|
@Comment("门店类型--此处取字典值即可")
|
|
|
private long idStoreType;
|
|
private long idStoreType;
|
|
|
|
|
|
|
|
|
|
+ @Comment("配送费结算方式 0本店自主结算/1加盟品牌方结算")
|
|
|
|
|
+ private int deliverSettleKind;
|
|
|
|
|
+
|
|
|
@Comment("门店编号-输入")
|
|
@Comment("门店编号-输入")
|
|
|
private String storeCodeInput;
|
|
private String storeCodeInput;
|
|
|
|
|
|
|
@@ -66,10 +69,176 @@ public class StoreInfo extends BaseEntity {
|
|
|
private StoreInvoiceInfo invoiceInfo;
|
|
private StoreInvoiceInfo invoiceInfo;
|
|
|
|
|
|
|
|
@Comment("员工")
|
|
@Comment("员工")
|
|
|
- private List<ERPTokenUser> employeeList = new ArrayList<>();
|
|
|
|
|
|
|
+ private List<LoginUser> employeeList = new ArrayList<>();
|
|
|
|
|
|
|
|
@Comment("门店已开通的平台,包含订单平台和配送平台")
|
|
@Comment("门店已开通的平台,包含订单平台和配送平台")
|
|
|
private List<StorePlatform> platformList = new ArrayList<>();
|
|
private List<StorePlatform> platformList = new ArrayList<>();
|
|
|
|
|
|
|
|
|
|
+ public long getId() {
|
|
|
|
|
+ return id;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setId(long id) {
|
|
|
|
|
+ this.id = id;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getStoreName() {
|
|
|
|
|
+ return storeName;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setStoreName(String storeName) {
|
|
|
|
|
+ this.storeName = storeName;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public long getIdBrand() {
|
|
|
|
|
+ return idBrand;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setIdBrand(long idBrand) {
|
|
|
|
|
+ this.idBrand = idBrand;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getBrandName() {
|
|
|
|
|
+ return brandName;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setBrandName(String brandName) {
|
|
|
|
|
+ this.brandName = brandName;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public long getIdStoreType() {
|
|
|
|
|
+ return idStoreType;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setIdStoreType(long idStoreType) {
|
|
|
|
|
+ this.idStoreType = idStoreType;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public int getDeliverSettleKind() {
|
|
|
|
|
+ return deliverSettleKind;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setDeliverSettleKind(int deliverSettleKind) {
|
|
|
|
|
+ this.deliverSettleKind = deliverSettleKind;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getStoreCodeInput() {
|
|
|
|
|
+ return storeCodeInput;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setStoreCodeInput(String storeCodeInput) {
|
|
|
|
|
+ this.storeCodeInput = storeCodeInput;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getStoreProvince() {
|
|
|
|
|
+ return storeProvince;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setStoreProvince(String storeProvince) {
|
|
|
|
|
+ this.storeProvince = storeProvince;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getStoreCity() {
|
|
|
|
|
+ return storeCity;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setStoreCity(String storeCity) {
|
|
|
|
|
+ this.storeCity = storeCity;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getStoreDistrict() {
|
|
|
|
|
+ return storeDistrict;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setStoreDistrict(String storeDistrict) {
|
|
|
|
|
+ this.storeDistrict = storeDistrict;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getStoreAddress() {
|
|
|
|
|
+ return storeAddress;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setStoreAddress(String storeAddress) {
|
|
|
|
|
+ this.storeAddress = storeAddress;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public GeoPoiLocation getLocation() {
|
|
|
|
|
+ return location;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setLocation(GeoPoiLocation location) {
|
|
|
|
|
+ this.location = location;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getContractPhone() {
|
|
|
|
|
+ return contractPhone;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setContractPhone(String contractPhone) {
|
|
|
|
|
+ this.contractPhone = contractPhone;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public long getStoreBossId() {
|
|
|
|
|
+ return storeBossId;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setStoreBossId(long storeBossId) {
|
|
|
|
|
+ this.storeBossId = storeBossId;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getCompanyLicenseNo() {
|
|
|
|
|
+ return companyLicenseNo;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setCompanyLicenseNo(String companyLicenseNo) {
|
|
|
|
|
+ this.companyLicenseNo = companyLicenseNo;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getCompanyLicensePicUrl() {
|
|
|
|
|
+ return companyLicensePicUrl;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setCompanyLicensePicUrl(String companyLicensePicUrl) {
|
|
|
|
|
+ this.companyLicensePicUrl = companyLicensePicUrl;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getLegalPersonIdNo() {
|
|
|
|
|
+ return legalPersonIdNo;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setLegalPersonIdNo(String legalPersonIdNo) {
|
|
|
|
|
+ this.legalPersonIdNo = legalPersonIdNo;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getLegalPersonName() {
|
|
|
|
|
+ return legalPersonName;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setLegalPersonName(String legalPersonName) {
|
|
|
|
|
+ this.legalPersonName = legalPersonName;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public StoreInvoiceInfo getInvoiceInfo() {
|
|
|
|
|
+ return invoiceInfo;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setInvoiceInfo(StoreInvoiceInfo invoiceInfo) {
|
|
|
|
|
+ this.invoiceInfo = invoiceInfo;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public List<LoginUser> getEmployeeList() {
|
|
|
|
|
+ return employeeList;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setEmployeeList(List<LoginUser> employeeList) {
|
|
|
|
|
+ this.employeeList = employeeList;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public List<StorePlatform> getPlatformList() {
|
|
|
|
|
+ return platformList;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
|
|
+ public void setPlatformList(List<StorePlatform> platformList) {
|
|
|
|
|
+ this.platformList = platformList;
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|