编译错误修正
This commit is contained in:
@@ -1,7 +1,9 @@
|
|||||||
package com.chaozhanggui.system.cashierservice.entity;
|
package com.chaozhanggui.system.cashierservice.entity;
|
||||||
|
|
||||||
import java.math.BigDecimal;
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* (TbShopInfo)实体类
|
* (TbShopInfo)实体类
|
||||||
@@ -9,8 +11,10 @@ import java.io.Serializable;
|
|||||||
* @author ww
|
* @author ww
|
||||||
* @since 2024-10-23 15:03:55
|
* @since 2024-10-23 15:03:55
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class TbShopInfo implements Serializable {
|
public class TbShopInfo implements Serializable {
|
||||||
private static final long serialVersionUID = -75915575260078554L;
|
private static final long serialVersionUID = -75915575260078554L;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 自增id
|
* 自增id
|
||||||
*/
|
*/
|
||||||
@@ -260,526 +264,4 @@ public class TbShopInfo implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private String paymentQrcode;
|
private String paymentQrcode;
|
||||||
|
|
||||||
|
|
||||||
public Integer getId() {
|
|
||||||
return id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setId(Integer id) {
|
|
||||||
this.id = id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getAccount() {
|
|
||||||
return account;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAccount(String account) {
|
|
||||||
this.account = account;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShopCode() {
|
|
||||||
return shopCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopCode(String shopCode) {
|
|
||||||
this.shopCode = shopCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSubTitle() {
|
|
||||||
return subTitle;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSubTitle(String subTitle) {
|
|
||||||
this.subTitle = subTitle;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getMerchantId() {
|
|
||||||
return merchantId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMerchantId(String merchantId) {
|
|
||||||
this.merchantId = merchantId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShopName() {
|
|
||||||
return shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopName(String shopName) {
|
|
||||||
this.shopName = shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getChainName() {
|
|
||||||
return chainName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setChainName(String chainName) {
|
|
||||||
this.chainName = chainName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBackImg() {
|
|
||||||
return backImg;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBackImg(String backImg) {
|
|
||||||
this.backImg = backImg;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getFrontImg() {
|
|
||||||
return frontImg;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFrontImg(String frontImg) {
|
|
||||||
this.frontImg = frontImg;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getContactName() {
|
|
||||||
return contactName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setContactName(String contactName) {
|
|
||||||
this.contactName = contactName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPhone() {
|
|
||||||
return phone;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPhone(String phone) {
|
|
||||||
this.phone = phone;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getLogo() {
|
|
||||||
return logo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setLogo(String logo) {
|
|
||||||
this.logo = logo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsDeposit() {
|
|
||||||
return isDeposit;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsDeposit(Integer isDeposit) {
|
|
||||||
this.isDeposit = isDeposit;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsSupply() {
|
|
||||||
return isSupply;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsSupply(Integer isSupply) {
|
|
||||||
this.isSupply = isSupply;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getCoverImg() {
|
|
||||||
return coverImg;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCoverImg(String coverImg) {
|
|
||||||
this.coverImg = coverImg;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShareImg() {
|
|
||||||
return shareImg;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShareImg(String shareImg) {
|
|
||||||
this.shareImg = shareImg;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getView() {
|
|
||||||
return view;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setView(String view) {
|
|
||||||
this.view = view;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getDetail() {
|
|
||||||
return detail;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDetail(String detail) {
|
|
||||||
this.detail = detail;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getLat() {
|
|
||||||
return lat;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setLat(String lat) {
|
|
||||||
this.lat = lat;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getLng() {
|
|
||||||
return lng;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setLng(String lng) {
|
|
||||||
this.lng = lng;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getMchId() {
|
|
||||||
return mchId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMchId(String mchId) {
|
|
||||||
this.mchId = mchId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getRegisterType() {
|
|
||||||
return registerType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRegisterType(String registerType) {
|
|
||||||
this.registerType = registerType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsWxMaIndependent() {
|
|
||||||
return isWxMaIndependent;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsWxMaIndependent(Integer isWxMaIndependent) {
|
|
||||||
this.isWxMaIndependent = isWxMaIndependent;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getAddress() {
|
|
||||||
return address;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAddress(String address) {
|
|
||||||
this.address = address;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getCity() {
|
|
||||||
return city;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCity(String city) {
|
|
||||||
this.city = city;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getType() {
|
|
||||||
return type;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setType(String type) {
|
|
||||||
this.type = type;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getIndustry() {
|
|
||||||
return industry;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIndustry(String industry) {
|
|
||||||
this.industry = industry;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getIndustryName() {
|
|
||||||
return industryName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIndustryName(String industryName) {
|
|
||||||
this.industryName = industryName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBusinessStartDay() {
|
|
||||||
return businessStartDay;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBusinessStartDay(String businessStartDay) {
|
|
||||||
this.businessStartDay = businessStartDay;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBusinessEndDay() {
|
|
||||||
return businessEndDay;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBusinessEndDay(String businessEndDay) {
|
|
||||||
this.businessEndDay = businessEndDay;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBusinessTime() {
|
|
||||||
return businessTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBusinessTime(String businessTime) {
|
|
||||||
this.businessTime = businessTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPostTime() {
|
|
||||||
return postTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPostTime(String postTime) {
|
|
||||||
this.postTime = postTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public BigDecimal getPostAmountLine() {
|
|
||||||
return postAmountLine;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPostAmountLine(BigDecimal postAmountLine) {
|
|
||||||
this.postAmountLine = postAmountLine;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getOnSale() {
|
|
||||||
return onSale;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOnSale(Integer onSale) {
|
|
||||||
this.onSale = onSale;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSettleType() {
|
|
||||||
return settleType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSettleType(Integer settleType) {
|
|
||||||
this.settleType = settleType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSettleTime() {
|
|
||||||
return settleTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSettleTime(String settleTime) {
|
|
||||||
this.settleTime = settleTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getEnterAt() {
|
|
||||||
return enterAt;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEnterAt(Integer enterAt) {
|
|
||||||
this.enterAt = enterAt;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getExpireAt() {
|
|
||||||
return expireAt;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setExpireAt(Long expireAt) {
|
|
||||||
this.expireAt = expireAt;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public BigDecimal getAverage() {
|
|
||||||
return average;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAverage(BigDecimal average) {
|
|
||||||
this.average = average;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getOrderWaitPayMinute() {
|
|
||||||
return orderWaitPayMinute;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderWaitPayMinute(Integer orderWaitPayMinute) {
|
|
||||||
this.orderWaitPayMinute = orderWaitPayMinute;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSupportDeviceNumber() {
|
|
||||||
return supportDeviceNumber;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSupportDeviceNumber(Integer supportDeviceNumber) {
|
|
||||||
this.supportDeviceNumber = supportDeviceNumber;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getDistributeLevel() {
|
|
||||||
return distributeLevel;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDistributeLevel(Integer distributeLevel) {
|
|
||||||
this.distributeLevel = distributeLevel;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getCreatedAt() {
|
|
||||||
return createdAt;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCreatedAt(Long createdAt) {
|
|
||||||
this.createdAt = createdAt;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUpdatedAt() {
|
|
||||||
return updatedAt;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUpdatedAt(Long updatedAt) {
|
|
||||||
this.updatedAt = updatedAt;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getProxyId() {
|
|
||||||
return proxyId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProxyId(String proxyId) {
|
|
||||||
this.proxyId = proxyId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getProfiles() {
|
|
||||||
return profiles;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProfiles(String profiles) {
|
|
||||||
this.profiles = profiles;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShopQrcode() {
|
|
||||||
return shopQrcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopQrcode(String shopQrcode) {
|
|
||||||
this.shopQrcode = shopQrcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getTag() {
|
|
||||||
return tag;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTag(String tag) {
|
|
||||||
this.tag = tag;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getIsOpenYhq() {
|
|
||||||
return isOpenYhq;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsOpenYhq(String isOpenYhq) {
|
|
||||||
this.isOpenYhq = isOpenYhq;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsUseVip() {
|
|
||||||
return isUseVip;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsUseVip(Integer isUseVip) {
|
|
||||||
this.isUseVip = isUseVip;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getProvinces() {
|
|
||||||
return provinces;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProvinces(String provinces) {
|
|
||||||
this.provinces = provinces;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getCities() {
|
|
||||||
return cities;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCities(String cities) {
|
|
||||||
this.cities = cities;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getDistricts() {
|
|
||||||
return districts;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDistricts(String districts) {
|
|
||||||
this.districts = districts;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getIsCustom() {
|
|
||||||
return isCustom;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsCustom(String isCustom) {
|
|
||||||
this.isCustom = isCustom;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getIsReturn() {
|
|
||||||
return isReturn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsReturn(String isReturn) {
|
|
||||||
this.isReturn = isReturn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getIsMemberIn() {
|
|
||||||
return isMemberIn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsMemberIn(String isMemberIn) {
|
|
||||||
this.isMemberIn = isMemberIn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getIsMemberReturn() {
|
|
||||||
return isMemberReturn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsMemberReturn(String isMemberReturn) {
|
|
||||||
this.isMemberReturn = isMemberReturn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsTableFee() {
|
|
||||||
return isTableFee;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsTableFee(Integer isTableFee) {
|
|
||||||
this.isTableFee = isTableFee;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsMemberPrice() {
|
|
||||||
return isMemberPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsMemberPrice(Integer isMemberPrice) {
|
|
||||||
this.isMemberPrice = isMemberPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getConsumeColony() {
|
|
||||||
return consumeColony;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setConsumeColony(String consumeColony) {
|
|
||||||
this.consumeColony = consumeColony;
|
|
||||||
}
|
|
||||||
|
|
||||||
public BigDecimal getTableFee() {
|
|
||||||
return tableFee;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTableFee(BigDecimal tableFee) {
|
|
||||||
this.tableFee = tableFee;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getEatModel() {
|
|
||||||
return eatModel;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEatModel(String eatModel) {
|
|
||||||
this.eatModel = eatModel;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSmallQrcode() {
|
|
||||||
return smallQrcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSmallQrcode(String smallQrcode) {
|
|
||||||
this.smallQrcode = smallQrcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPaymentQrcode() {
|
|
||||||
return paymentQrcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPaymentQrcode(String paymentQrcode) {
|
|
||||||
this.paymentQrcode = paymentQrcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user