|
@@ -34,7 +34,6 @@ public class BizCollection extends BaseEntity implements Serializable {
|
|
|
private String flowNo;
|
|
|
|
|
|
|
|
|
-
|
|
|
@ApiModelProperty(value = "收款流水号")
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
private Timestamp formDate;
|
|
@@ -46,7 +45,6 @@ public class BizCollection extends BaseEntity implements Serializable {
|
|
|
private String subsidiary;
|
|
|
|
|
|
|
|
|
-
|
|
|
@ApiModelProperty(value = "服务公司账号")
|
|
|
private String subsidiaryBankAccount;
|
|
|
|
|
@@ -57,14 +55,11 @@ public class BizCollection extends BaseEntity implements Serializable {
|
|
|
private Long companyId;
|
|
|
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- @ApiModelProperty(value="应收金额")
|
|
|
+ @ApiModelProperty(value = "应收金额")
|
|
|
private BigDecimal amount;
|
|
|
|
|
|
@ApiModelProperty(value = "到账日期")
|
|
|
- @JsonFormat(pattern="yyyy-MM-dd")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
private Timestamp arriveDate;
|
|
|
|
|
|
@ApiModelProperty(value = "到账时间")
|
|
@@ -111,14 +106,10 @@ public class BizCollection extends BaseEntity implements Serializable {
|
|
|
private Long contractId;
|
|
|
|
|
|
|
|
|
-
|
|
|
@ApiModelProperty(value = "申请人")
|
|
|
private Long applierId;
|
|
|
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
@TableField(exist = false)
|
|
|
private List<BizCollectionDetail> contractDetails;
|
|
|
|
|
@@ -163,9 +154,11 @@ public class BizCollection extends BaseEntity implements Serializable {
|
|
|
@TableField(exist = false)
|
|
|
private String orderRemark;
|
|
|
|
|
|
- /** 导出数据 */
|
|
|
+ /**
|
|
|
+ * 导出数据
|
|
|
+ */
|
|
|
|
|
|
- @Excel(name = "客户名称",width = 35)
|
|
|
+ @Excel(name = "客户名称", width = 35)
|
|
|
@ApiModelProperty(value = "客户名称")
|
|
|
private String companyName;
|
|
|
|
|
@@ -174,7 +167,7 @@ public class BizCollection extends BaseEntity implements Serializable {
|
|
|
@TableField(exist = false)
|
|
|
private String contractNo;
|
|
|
|
|
|
- @Excel(name = "实际付款时间",width = 20, dateFormat = "yyyy-MM-dd")
|
|
|
+ @Excel(name = "实际付款时间", width = 20, dateFormat = "yyyy-MM-dd")
|
|
|
@ApiModelProperty("确认到账时间")
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
private Timestamp actuallyDate;
|
|
@@ -206,15 +199,17 @@ public class BizCollection extends BaseEntity implements Serializable {
|
|
|
|
|
|
@TableField(exist = false)
|
|
|
private List<SysFileStorage> evidenceFiles;
|
|
|
-
|
|
|
+ @TableField(exist = false)
|
|
|
+ private String boss;
|
|
|
+ @TableField(exist = false)
|
|
|
+ private String party;
|
|
|
private Long verifyId;
|
|
|
- public String getRemark()
|
|
|
- {
|
|
|
+
|
|
|
+ public String getRemark() {
|
|
|
return remark;
|
|
|
}
|
|
|
|
|
|
- public void setRemark(String remark)
|
|
|
- {
|
|
|
+ public void setRemark(String remark) {
|
|
|
this.remark = remark;
|
|
|
}
|
|
|
|