| | |
| | | import com.baomidou.mybatisplus.annotations.TableId; |
| | | import com.baomidou.mybatisplus.annotations.TableName; |
| | | import com.baomidou.mybatisplus.enums.IdType; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | |
| | | import java.util.Date; |
| | | |
| | |
| | | */ |
| | | @TableField("entercode") |
| | | private String entercode; |
| | | |
| | | |
| | | @ApiModelProperty("省") |
| | | private String province; |
| | | |
| | | @ApiModelProperty("省代码") |
| | | private String provinceCode; |
| | | |
| | | @ApiModelProperty("市") |
| | | private String city; |
| | | |
| | | @ApiModelProperty("市代码") |
| | | private String cityCode; |
| | | |
| | | @ApiModelProperty("区") |
| | | private String area; |
| | | |
| | | @ApiModelProperty("区代码") |
| | | private String areaCode; |
| | | |
| | | @ApiModelProperty("分享图片") |
| | | private String shareImg; |
| | | |
| | | @ApiModelProperty("分享链接") |
| | | private String shareLink; |
| | | |
| | | @ApiModelProperty("证联客户号") |
| | | private String custId; |
| | | |
| | | @ApiModelProperty("是否已开通支付账户(0:否,1:是)") |
| | | private Integer accOpenFlag; |
| | | |
| | | @ApiModelProperty("是否已同步到中台(0:否,1:是)") |
| | | private Integer isSynchronous; |
| | | |
| | | public String getShareImg() { |
| | | return shareImg; |
| | | } |
| | | |
| | | public void setShareImg(String shareImg) { |
| | | this.shareImg = shareImg; |
| | | } |
| | | |
| | | public String getShareLink() { |
| | | return shareLink; |
| | | } |
| | | |
| | | public void setShareLink(String shareLink) { |
| | | this.shareLink = shareLink; |
| | | } |
| | | |
| | | public String getProvince() { |
| | | return province; |
| | | } |
| | | |
| | | public void setProvince(String province) { |
| | | this.province = province; |
| | | } |
| | | |
| | | public String getProvinceCode() { |
| | | return provinceCode; |
| | | } |
| | | |
| | | public void setProvinceCode(String provinceCode) { |
| | | this.provinceCode = provinceCode; |
| | | } |
| | | |
| | | public String getCity() { |
| | | return city; |
| | | } |
| | | |
| | | public void setCity(String city) { |
| | | this.city = city; |
| | | } |
| | | |
| | | public String getCityCode() { |
| | | return cityCode; |
| | | } |
| | | |
| | | public void setCityCode(String cityCode) { |
| | | this.cityCode = cityCode; |
| | | } |
| | | |
| | | public String getArea() { |
| | | return area; |
| | | } |
| | | |
| | | public void setArea(String area) { |
| | | this.area = area; |
| | | } |
| | | |
| | | public String getAreaCode() { |
| | | return areaCode; |
| | | } |
| | | |
| | | public void setAreaCode(String areaCode) { |
| | | this.areaCode = areaCode; |
| | | } |
| | | |
| | | public String getQrCode() { |
| | | return qrCode; |
| | | } |
| | |
| | | this.entercode = entercode; |
| | | } |
| | | |
| | | public String getCustId() { |
| | | return custId; |
| | | } |
| | | |
| | | public void setCustId(String custId) { |
| | | this.custId = custId; |
| | | } |
| | | |
| | | public Integer getAccOpenFlag() { |
| | | return accOpenFlag; |
| | | } |
| | | |
| | | public void setAccOpenFlag(Integer accOpenFlag) { |
| | | this.accOpenFlag = accOpenFlag; |
| | | } |
| | | |
| | | public Integer getIsSynchronous() { |
| | | return isSynchronous; |
| | | } |
| | | |
| | | public void setIsSynchronous(Integer isSynchronous) { |
| | | this.isSynchronous = isSynchronous; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "Driver{" + |