|
|
@@ -67,14 +67,26 @@ public class WwkjCustomerInfo extends BaseEntity {
|
|
|
@Excel(name = "客户类型")
|
|
|
private String customerType;
|
|
|
|
|
|
+ /** 减免水量:与用户性质关联的水量减免,减免XX吨 */
|
|
|
+ @Excel(name = "减免水量")
|
|
|
+ private String deductMeter;
|
|
|
+
|
|
|
/** 水价信息 */
|
|
|
@Excel(name = "水价信息")
|
|
|
private String waterPrice;
|
|
|
|
|
|
+ /** 基础水价 */
|
|
|
+ @Excel(name = "基础水价")
|
|
|
+ private String basePrice;
|
|
|
+
|
|
|
/** 户主(法人) */
|
|
|
@Excel(name = "户主(法人)")
|
|
|
private String houseHolder;
|
|
|
|
|
|
+ /** 是否欠费 */
|
|
|
+ @Excel(name = "是否欠费")
|
|
|
+ private String arrearStatus;
|
|
|
+
|
|
|
/** 客户状态:0:正常;1:销户;2:停用;3:空房;4:临时用水 */
|
|
|
@Excel(name = "客户状态:0:正常;1:销户;2:停用;3:空房;4:临时用水")
|
|
|
private String accountStatus;
|
|
|
@@ -108,6 +120,14 @@ public class WwkjCustomerInfo extends BaseEntity {
|
|
|
@Excel(name = "开票信息")
|
|
|
private String invoiceTitle;
|
|
|
|
|
|
+ /** 当前页数 */
|
|
|
+ @Excel(name = "当前页数")
|
|
|
+ private int pageNum;
|
|
|
+
|
|
|
+ /** 总页数 */
|
|
|
+ @Excel(name = "总页数")
|
|
|
+ private int total;
|
|
|
+
|
|
|
/** 删除标志(0代表存在 2代表删除) */
|
|
|
private String delFlag;
|
|
|
|
|
|
@@ -190,37 +210,80 @@ public class WwkjCustomerInfo extends BaseEntity {
|
|
|
public void setDelFlag(String delFlag) { this.delFlag = delFlag; }
|
|
|
public String getDelFlag() { return delFlag; }
|
|
|
|
|
|
+ public String getDeductMeter() {
|
|
|
+ return deductMeter;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDeductMeter(String deductMeter) {
|
|
|
+ this.deductMeter = deductMeter;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getBasePrice() {
|
|
|
+ return basePrice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBasePrice(String basePrice) {
|
|
|
+ this.basePrice = basePrice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getArrearStatus() {
|
|
|
+ return arrearStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setArrearStatus(String arrearStatus) {
|
|
|
+ this.arrearStatus = arrearStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getPageNum() {
|
|
|
+ return pageNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPageNum(int pageNum) {
|
|
|
+ this.pageNum = pageNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getTotal() {
|
|
|
+ return total;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTotal(int total) {
|
|
|
+ this.total = total;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
- return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
|
|
- .append("id", getId())
|
|
|
- .append("customerCode", getCustomerCode())
|
|
|
- .append("customerName", getCustomerName())
|
|
|
- .append("namePinYin", getNamePinYin())
|
|
|
- .append("detailedAddress", getDetailedAddress())
|
|
|
- .append("companyCode", getCompanyCode())
|
|
|
- .append("companyName", getCompanyName())
|
|
|
- .append("businessCode", getBusinessCode())
|
|
|
- .append("businessName", getBusinessName())
|
|
|
- .append("areaName", getAreaName())
|
|
|
- .append("waterType", getWaterType())
|
|
|
- .append("waterNature", getWaterNature())
|
|
|
- .append("customerType", getCustomerType())
|
|
|
- .append("waterPrice", getWaterPrice())
|
|
|
- .append("houseHolder", getHouseHolder())
|
|
|
- .append("accountStatus", getAccountStatus())
|
|
|
- .append("numsOfUser", getNumsOfUser())
|
|
|
- .append("contacts", getContacts())
|
|
|
- .append("mobile", getMobile())
|
|
|
- .append("openCusDate", getOpenCusDate())
|
|
|
- .append("certificateType", getCertificateType())
|
|
|
- .append("certificateCode", getCertificateCode())
|
|
|
- .append("invoiceTitle", getInvoiceTitle())
|
|
|
- .append("delFlag", getDelFlag())
|
|
|
- .append("createBy", getCreateBy())
|
|
|
- .append("createTime", getCreateTime())
|
|
|
- .append("updateBy", getUpdateBy())
|
|
|
- .append("updateTime", getUpdateTime())
|
|
|
- .toString();
|
|
|
+ return "WwkjCustomerInfo{" +
|
|
|
+ "id=" + id +
|
|
|
+ ", customerCode='" + customerCode + '\'' +
|
|
|
+ ", customerName='" + customerName + '\'' +
|
|
|
+ ", namePinYin='" + namePinYin + '\'' +
|
|
|
+ ", detailedAddress='" + detailedAddress + '\'' +
|
|
|
+ ", companyCode='" + companyCode + '\'' +
|
|
|
+ ", companyName='" + companyName + '\'' +
|
|
|
+ ", businessCode='" + businessCode + '\'' +
|
|
|
+ ", businessName='" + businessName + '\'' +
|
|
|
+ ", areaName='" + areaName + '\'' +
|
|
|
+ ", waterType='" + waterType + '\'' +
|
|
|
+ ", waterNature='" + waterNature + '\'' +
|
|
|
+ ", customerType='" + customerType + '\'' +
|
|
|
+ ", deductMeter='" + deductMeter + '\'' +
|
|
|
+ ", waterPrice='" + waterPrice + '\'' +
|
|
|
+ ", basePrice='" + basePrice + '\'' +
|
|
|
+ ", houseHolder='" + houseHolder + '\'' +
|
|
|
+ ", arrearStatus='" + arrearStatus + '\'' +
|
|
|
+ ", accountStatus='" + accountStatus + '\'' +
|
|
|
+ ", numsOfUser=" + numsOfUser +
|
|
|
+ ", contacts='" + contacts + '\'' +
|
|
|
+ ", mobile='" + mobile + '\'' +
|
|
|
+ ", openCusDate=" + openCusDate +
|
|
|
+ ", certificateType='" + certificateType + '\'' +
|
|
|
+ ", certificateCode='" + certificateCode + '\'' +
|
|
|
+ ", invoiceTitle='" + invoiceTitle + '\'' +
|
|
|
+ ", pageNum=" + pageNum +
|
|
|
+ ", total=" + total +
|
|
|
+ ", delFlag='" + delFlag + '\'' +
|
|
|
+ ", commonCondition='" + commonCondition + '\'' +
|
|
|
+ '}';
|
|
|
}
|
|
|
}
|