|
|
@ -29,6 +29,7 @@ import com.baomidou.mybatisplus.annotation.TableName; |
|
|
|
import com.yxt.common.core.domain.BaseEntity; |
|
|
|
import io.swagger.annotations.ApiModel; |
|
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
import java.math.BigDecimal; |
|
|
|
|
|
|
@ -46,217 +47,37 @@ import java.math.BigDecimal; |
|
|
|
* @since 1.0 |
|
|
|
*/ |
|
|
|
@ApiModel(value = "已选应收款项明细表", description = "已选应收款项明细表") |
|
|
|
@Data |
|
|
|
@TableName("bus_selected_receivables_detailed") |
|
|
|
public class BusSelectedReceivablesDetailed extends BaseEntity { |
|
|
|
private static final long serialVersionUID = 1L; |
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("创建人接口") |
|
|
|
private String createByName; // 创建人接口
|
|
|
|
|
|
|
|
@ApiModelProperty("合同sid") |
|
|
|
private String contractSid; // 合同sid
|
|
|
|
|
|
|
|
@ApiModelProperty("合同编号") |
|
|
|
private String contractNo; // 合同编号
|
|
|
|
|
|
|
|
@ApiModelProperty("客户sid") |
|
|
|
private String customerSid; // 客户sid
|
|
|
|
|
|
|
|
@ApiModelProperty("客户名称") |
|
|
|
private String customerName; // 客户名称
|
|
|
|
|
|
|
|
@ApiModelProperty("车架号") |
|
|
|
private String VIN; // 车架号
|
|
|
|
|
|
|
|
@ApiModelProperty("分公司sid") |
|
|
|
private String useOrgSid; // 分公司sid
|
|
|
|
|
|
|
|
@ApiModelProperty("联系电话") |
|
|
|
private String customerPhone; // 联系电话
|
|
|
|
|
|
|
|
@ApiModelProperty("应收项目名称") |
|
|
|
private String receivablesName; // 应收项目名称
|
|
|
|
|
|
|
|
@ApiModelProperty("当前应收金额") |
|
|
|
private BigDecimal currentReceivableMoney; // 当前应收金额
|
|
|
|
|
|
|
|
@ApiModelProperty("认款金额") |
|
|
|
private BigDecimal subscriptionMoney; // 认款金额
|
|
|
|
|
|
|
|
@ApiModelProperty("认款申请日期") |
|
|
|
private String subscriptionDate; // 认款申请日期
|
|
|
|
|
|
|
|
@ApiModelProperty("收款确认单sid") |
|
|
|
private String collSid; // 收款确认单sid
|
|
|
|
|
|
|
|
/** |
|
|
|
* @return 创建人接口 |
|
|
|
*/ |
|
|
|
public String getCreateByName(){ |
|
|
|
return createByName; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param createByName 创建人接口 to set |
|
|
|
*/ |
|
|
|
public void setCreateByName(String createByName){ |
|
|
|
this.createByName = createByName; |
|
|
|
} |
|
|
|
/** |
|
|
|
* @return 合同sid |
|
|
|
*/ |
|
|
|
public String getContractSid(){ |
|
|
|
return contractSid; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param contractSid 合同sid to set |
|
|
|
*/ |
|
|
|
public void setContractSid(String contractSid){ |
|
|
|
this.contractSid = contractSid; |
|
|
|
} |
|
|
|
/** |
|
|
|
* @return 合同编号 |
|
|
|
*/ |
|
|
|
public String getContractNo(){ |
|
|
|
return contractNo; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param contractNo 合同编号 to set |
|
|
|
*/ |
|
|
|
public void setContractNo(String contractNo){ |
|
|
|
this.contractNo = contractNo; |
|
|
|
} |
|
|
|
/** |
|
|
|
* @return 客户sid |
|
|
|
*/ |
|
|
|
public String getCustomerSid(){ |
|
|
|
return customerSid; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param customerSid 客户sid to set |
|
|
|
*/ |
|
|
|
public void setCustomerSid(String customerSid){ |
|
|
|
this.customerSid = customerSid; |
|
|
|
} |
|
|
|
/** |
|
|
|
* @return 客户名称 |
|
|
|
*/ |
|
|
|
public String getCustomerName(){ |
|
|
|
return customerName; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param customerName 客户名称 to set |
|
|
|
*/ |
|
|
|
public void setCustomerName(String customerName){ |
|
|
|
this.customerName = customerName; |
|
|
|
} |
|
|
|
/** |
|
|
|
* @return 车架号 |
|
|
|
*/ |
|
|
|
public String getVIN(){ |
|
|
|
return VIN; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param VIN 车架号 to set |
|
|
|
*/ |
|
|
|
public void setVIN(String VIN){ |
|
|
|
this.VIN = VIN; |
|
|
|
} |
|
|
|
/** |
|
|
|
* @return 分公司sid |
|
|
|
*/ |
|
|
|
public String getUseOrgSid(){ |
|
|
|
return useOrgSid; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param useOrgSid 分公司sid to set |
|
|
|
*/ |
|
|
|
public void setUseOrgSid(String useOrgSid){ |
|
|
|
this.useOrgSid = useOrgSid; |
|
|
|
} |
|
|
|
/** |
|
|
|
* @return 联系电话 |
|
|
|
*/ |
|
|
|
public String getCustomerPhone(){ |
|
|
|
return customerPhone; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param customerPhone 联系电话 to set |
|
|
|
*/ |
|
|
|
public void setCustomerPhone(String customerPhone){ |
|
|
|
this.customerPhone = customerPhone; |
|
|
|
} |
|
|
|
/** |
|
|
|
* @return 应收项目名称 |
|
|
|
*/ |
|
|
|
public String getReceivablesName(){ |
|
|
|
return receivablesName; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param receivablesName 应收项目名称 to set |
|
|
|
*/ |
|
|
|
public void setReceivablesName(String receivablesName){ |
|
|
|
this.receivablesName = receivablesName; |
|
|
|
} |
|
|
|
/** |
|
|
|
* @return 当前应收金额 |
|
|
|
*/ |
|
|
|
public BigDecimal getCurrentReceivableMoney(){ |
|
|
|
return currentReceivableMoney; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param currentReceivableMoney 当前应收金额 to set |
|
|
|
*/ |
|
|
|
public void setCurrentReceivableMoney(BigDecimal currentReceivableMoney){ |
|
|
|
this.currentReceivableMoney = currentReceivableMoney; |
|
|
|
} |
|
|
|
/** |
|
|
|
* @return 认款金额 |
|
|
|
*/ |
|
|
|
public BigDecimal getSubscriptionMoney(){ |
|
|
|
return subscriptionMoney; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param subscriptionMoney 认款金额 to set |
|
|
|
*/ |
|
|
|
public void setSubscriptionMoney(BigDecimal subscriptionMoney){ |
|
|
|
this.subscriptionMoney = subscriptionMoney; |
|
|
|
} |
|
|
|
/** |
|
|
|
* @return 认款申请日期 |
|
|
|
*/ |
|
|
|
public String getSubscriptionDate(){ |
|
|
|
return subscriptionDate; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param subscriptionDate 认款申请日期 to set |
|
|
|
*/ |
|
|
|
public void setSubscriptionDate(String subscriptionDate){ |
|
|
|
this.subscriptionDate = subscriptionDate; |
|
|
|
} |
|
|
|
/** |
|
|
|
* @return 收款确认单sid |
|
|
|
*/ |
|
|
|
public String getCollSid(){ |
|
|
|
return collSid; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param collSid 收款确认单sid to set |
|
|
|
*/ |
|
|
|
public void setCollSid(String collSid){ |
|
|
|
this.collSid = collSid; |
|
|
|
} |
|
|
|
@ApiModelProperty("审核状态(1待审核/2已驳回/3已审核)") |
|
|
|
private Integer auditState; // 审核状态
|
|
|
|
} |
|
|
|