|
|
@ -22,100 +22,117 @@ public class FinancialAccountsPayable extends BaseEntity |
|
|
|
private Long accountsPayableId; |
|
|
|
|
|
|
|
/** 应付单号 */ |
|
|
|
@Excel(name = "应付单号") |
|
|
|
@Excel(name = "应付单号", sort = 1) |
|
|
|
private String accountsPayableCode; |
|
|
|
|
|
|
|
/** 付款状态 */ |
|
|
|
@Excel(name = "付款状态") |
|
|
|
@Excel(name = "付款状态", sort = 2,dictType = "accounts_payable_status") |
|
|
|
private String accountsPayableStatus; |
|
|
|
|
|
|
|
/** 关联单号 */ |
|
|
|
@Excel(name = "关联单号") |
|
|
|
@Excel(name = "关联单号", sort = 3) |
|
|
|
private String relevanceCode; |
|
|
|
|
|
|
|
/** 贷方科目 */ |
|
|
|
@Excel(name = "贷方科目") |
|
|
|
private String creditAccount; |
|
|
|
/** 供应商ID */ |
|
|
|
@Excel(name = "供应商ID", sort = 4) |
|
|
|
private String supplierCode; |
|
|
|
|
|
|
|
/** 贷方明细 */ |
|
|
|
@Excel(name = "贷方明细") |
|
|
|
private String creditDetail; |
|
|
|
/** 供应商名称 */ |
|
|
|
@Excel(name = "供应商名称", sort = 5) |
|
|
|
private String supplierName; |
|
|
|
|
|
|
|
/** 开户银行 */ |
|
|
|
@Excel(name = "开户银行") |
|
|
|
@Excel(name = "开户银行", sort = 6) |
|
|
|
private String openBank; |
|
|
|
|
|
|
|
/** 开户账号 */ |
|
|
|
@Excel(name = "开户账号") |
|
|
|
@Excel(name = "开户账号", sort = 7) |
|
|
|
private String openAccount; |
|
|
|
/** 贷方科目 */ |
|
|
|
// @Excel(name = "贷方科目")
|
|
|
|
private String creditAccount; |
|
|
|
|
|
|
|
/** 贷方明细 */ |
|
|
|
// @Excel(name = "贷方明细")
|
|
|
|
private String creditDetail; |
|
|
|
|
|
|
|
/** 供应商ID */ |
|
|
|
@Excel(name = "供应商ID") |
|
|
|
private String supplierCode; |
|
|
|
|
|
|
|
/** 供应商名称 */ |
|
|
|
@Excel(name = "供应商名称") |
|
|
|
private String supplierName; |
|
|
|
|
|
|
|
/** 合同编号 */ |
|
|
|
@Excel(name = "合同编号") |
|
|
|
@Excel(name = "合同编号", sort = 8) |
|
|
|
private String contractNumber; |
|
|
|
|
|
|
|
/** 币种 */ |
|
|
|
@Excel(name = "币种") |
|
|
|
@Excel(name = "币种", sort = 9) |
|
|
|
private String currencyType; |
|
|
|
|
|
|
|
/** 不含税金额 */ |
|
|
|
@Excel(name = "不含税金额") |
|
|
|
@Excel(name = "不含税金额", sort = 10) |
|
|
|
private BigDecimal priceExcludingTax; |
|
|
|
|
|
|
|
/** 含税金额 */ |
|
|
|
@Excel(name = "含税金额") |
|
|
|
@Excel(name = "含税金额", sort = 11) |
|
|
|
private BigDecimal priceIncludesTax; |
|
|
|
|
|
|
|
/** 付款条件 */ |
|
|
|
@Excel(name = "付款条件") |
|
|
|
@Excel(name = "付款条件", sort = 12) |
|
|
|
private String paymentCondition; |
|
|
|
|
|
|
|
/** 实付金额 */ |
|
|
|
@Excel(name = "实付金额") |
|
|
|
private String actualPaidPrice; |
|
|
|
@Excel(name = "实付金额", sort = 13) |
|
|
|
private BigDecimal actualPaidPrice; |
|
|
|
|
|
|
|
/** 未付金额 */ |
|
|
|
@Excel(name = "未付金额") |
|
|
|
private String unpaidPrice; |
|
|
|
@Excel(name = "未付金额", sort = 14) |
|
|
|
private BigDecimal unpaidPrice; |
|
|
|
|
|
|
|
/** 采购员 */ |
|
|
|
@Excel(name = "采购员") |
|
|
|
@Excel(name = "采购员", sort = 15) |
|
|
|
private String purchaseBuyer; |
|
|
|
|
|
|
|
/** 入库状态 */ |
|
|
|
@Excel(name = "入库状态") |
|
|
|
@Excel(name = "入库状态", sort = 16, dictType = "erp_inbound_status") |
|
|
|
private String storageStatus; |
|
|
|
|
|
|
|
/** 付款凭证编号 */ |
|
|
|
@Excel(name = "付款凭证编号") |
|
|
|
// @Excel(name = "付款凭证编号")
|
|
|
|
private String paidVoucherCode; |
|
|
|
|
|
|
|
/** 付款金额 */ |
|
|
|
@Excel(name = "付款金额") |
|
|
|
// @Excel(name = "付款金额")
|
|
|
|
private BigDecimal paidPrice; |
|
|
|
|
|
|
|
/** 付款时间 */ |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd") |
|
|
|
@Excel(name = "付款时间", width = 30, dateFormat = "yyyy-MM-dd") |
|
|
|
@Excel(name = "付款时间", width = 30, sort = 17, dateFormat = "yyyy-MM-dd") |
|
|
|
private Date paidTime; |
|
|
|
|
|
|
|
/** 创建人*/ |
|
|
|
@Excel(name = "创建人", sort = 18) |
|
|
|
private String createBy; |
|
|
|
|
|
|
|
/** 创建时间 */ |
|
|
|
@Excel(name = "创建时间", sort = 19, dateFormat = "yyyy-MM-dd") |
|
|
|
private Date createTime; |
|
|
|
|
|
|
|
/** 更新人 */ |
|
|
|
@Excel(name = "更新人", sort = 20) |
|
|
|
private String updateBy; |
|
|
|
|
|
|
|
/** 更新时间 */ |
|
|
|
@Excel(name = "更新时间", sort = 21, dateFormat = "yyyy-MM-dd") |
|
|
|
private Date updateTime; |
|
|
|
|
|
|
|
/** 付款明细 */ |
|
|
|
@Excel(name = "付款明细") |
|
|
|
// @Excel(name = "付款明细")
|
|
|
|
private String paidDetail; |
|
|
|
|
|
|
|
/** 收款备注 */ |
|
|
|
@Excel(name = "收款备注") |
|
|
|
// @Excel(name = "收款备注")
|
|
|
|
private String paidPhotourl; |
|
|
|
|
|
|
|
/** 操作人 */ |
|
|
|
@Excel(name = "操作人") |
|
|
|
// @Excel(name = "操作人")
|
|
|
|
private String operatorPeople; |
|
|
|
|
|
|
|
public void setAccountsPayableId(Long accountsPayableId) |
|
|
@ -253,21 +270,21 @@ public class FinancialAccountsPayable extends BaseEntity |
|
|
|
{ |
|
|
|
return paymentCondition; |
|
|
|
} |
|
|
|
public void setActualPaidPrice(String actualPaidPrice) |
|
|
|
public void setActualPaidPrice(BigDecimal actualPaidPrice) |
|
|
|
{ |
|
|
|
this.actualPaidPrice = actualPaidPrice; |
|
|
|
} |
|
|
|
|
|
|
|
public String getActualPaidPrice() |
|
|
|
public BigDecimal getActualPaidPrice() |
|
|
|
{ |
|
|
|
return actualPaidPrice; |
|
|
|
} |
|
|
|
public void setUnpaidPrice(String unpaidPrice) |
|
|
|
public void setUnpaidPrice(BigDecimal unpaidPrice) |
|
|
|
{ |
|
|
|
this.unpaidPrice = unpaidPrice; |
|
|
|
} |
|
|
|
|
|
|
|
public String getUnpaidPrice() |
|
|
|
public BigDecimal getUnpaidPrice() |
|
|
|
{ |
|
|
|
return unpaidPrice; |
|
|
|
} |
|
|
@ -344,6 +361,44 @@ public class FinancialAccountsPayable extends BaseEntity |
|
|
|
return operatorPeople; |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public String getCreateBy() { |
|
|
|
return createBy; |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public void setCreateBy(String createBy) { |
|
|
|
this.createBy = createBy; |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public Date getCreateTime() { |
|
|
|
return createTime; |
|
|
|
} |
|
|
|
|
|
|
|
public void setCreateTime(Date createTime) { |
|
|
|
this.createTime = createTime; |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public String getUpdateBy() { |
|
|
|
return updateBy; |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public void setUpdateBy(String updateBy) { |
|
|
|
this.updateBy = updateBy; |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public Date getUpdateTime() { |
|
|
|
return updateTime; |
|
|
|
} |
|
|
|
|
|
|
|
public void setUpdateTime(Date updateTime) { |
|
|
|
this.updateTime = updateTime; |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public String toString() { |
|
|
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
|
|
|