|
|
@ -51,54 +51,46 @@ import java.util.List; |
|
|
|
@ApiModel(value = "逾期催收记录 数据传输对象", description = "逾期催收记录 数据传输对象") |
|
|
|
public class AppBeCollectionRecordDto implements Dto { |
|
|
|
|
|
|
|
private String sid; // sid
|
|
|
|
private String sid; |
|
|
|
|
|
|
|
@ApiModelProperty("用户sid") |
|
|
|
private String userSid; |
|
|
|
@ApiModelProperty("组织全路径") |
|
|
|
private String orgPath; |
|
|
|
@ApiModelProperty("催收方式key") |
|
|
|
private String collectionTypeKey; |
|
|
|
@ApiModelProperty("催收方式value") |
|
|
|
private String collectionTypeValue; |
|
|
|
@ApiModelProperty("定位坐标") |
|
|
|
private String location; |
|
|
|
@ApiModelProperty("定位具体位置") |
|
|
|
private String locationStr; |
|
|
|
@ApiModelProperty("催收结果key") |
|
|
|
private String collectionResultKey; |
|
|
|
@ApiModelProperty("催收结果value") |
|
|
|
private String collectionResultValue; |
|
|
|
@ApiModelProperty("联系人key") |
|
|
|
private String contactsKey; |
|
|
|
@ApiModelProperty("联系人value") |
|
|
|
private String contactsValue; |
|
|
|
@ApiModelProperty("逾期原因") |
|
|
|
private String beReason; |
|
|
|
@ApiModelProperty("是否正常运营key") |
|
|
|
private String isNormalOperKey; |
|
|
|
@ApiModelProperty("是否正常运营value") |
|
|
|
private String isNormalOperValue; |
|
|
|
@ApiModelProperty("承诺还款日期") |
|
|
|
private String promRepayDate; |
|
|
|
@ApiModelProperty("承诺还款金额") |
|
|
|
private String promRepayMoney; |
|
|
|
@ApiModelProperty("预处理措施key") |
|
|
|
private String taskHandMeasuresKey; |
|
|
|
@ApiModelProperty("预处理措施value") |
|
|
|
private String taskHandMeasuresValue; |
|
|
|
@ApiModelProperty("备注") |
|
|
|
private String remarks; // 备注
|
|
|
|
@ApiModelProperty("创建人sid") |
|
|
|
private String createBySid; // 创建人sid
|
|
|
|
@ApiModelProperty("创建人") |
|
|
|
private String createByName; // 创建人
|
|
|
|
@ApiModelProperty("催收方式key") |
|
|
|
private String collectionTypeKey; // 催收方式key
|
|
|
|
@ApiModelProperty("催收方式value") |
|
|
|
private String collectionTypeValue; // 催收方式value
|
|
|
|
@ApiModelProperty("定位坐标") |
|
|
|
private String location; // 定位坐标
|
|
|
|
@ApiModelProperty("定位具体位置") |
|
|
|
private String locationStr; // 定位具体位置
|
|
|
|
@ApiModelProperty("催收结果key") |
|
|
|
private String collectionResultKey; // 催收结果key
|
|
|
|
@ApiModelProperty("催收结果value") |
|
|
|
private String collectionResultValue; // 催收结果value
|
|
|
|
@ApiModelProperty("联系人key") |
|
|
|
private String contactsKey; // 联系人key
|
|
|
|
@ApiModelProperty("联系人value") |
|
|
|
private String contactsValue; // 联系人value
|
|
|
|
@ApiModelProperty("逾期原因") |
|
|
|
private String beReason; // 逾期原因
|
|
|
|
@ApiModelProperty("是否正常运营key") |
|
|
|
private String isNormalOperKey; // 是否正常运营key
|
|
|
|
@ApiModelProperty("是否正常运营value") |
|
|
|
private String isNormalOperValue; // 是否正常运营value
|
|
|
|
@ApiModelProperty("承诺还款日期") |
|
|
|
private String promRepayDate; // 承诺还款日期
|
|
|
|
@ApiModelProperty("承诺还款金额") |
|
|
|
private String promRepayMoney; // 承诺还款金额
|
|
|
|
@ApiModelProperty("预处理措施key") |
|
|
|
private String taskHandMeasuresKey; // 预处理措施key
|
|
|
|
@ApiModelProperty("预处理措施value") |
|
|
|
private String taskHandMeasuresValue; // 预处理措施value
|
|
|
|
@ApiModelProperty("销售订单车辆sid") |
|
|
|
private String saleVehSid; // 销售订单车辆sid
|
|
|
|
@ApiModelProperty("分公司sid") |
|
|
|
private String useOrgSid; // 分公司sid
|
|
|
|
@ApiModelProperty("分公司名称") |
|
|
|
private String useOrgName; // 分公司名称
|
|
|
|
@ApiModelProperty("组织全路径") |
|
|
|
private String orgPath; // 组织全路径
|
|
|
|
@ApiModelProperty("销售订单车辆sid") |
|
|
|
private List<String> saleVehSids; // 销售订单车辆sid
|
|
|
|
private String remarks; |
|
|
|
@ApiModelProperty("催收附件") |
|
|
|
private List<String> loanBeCollectionRecordFileList = new ArrayList<>(); // 催收附件
|
|
|
|
private List<String> files = new ArrayList<>(); |
|
|
|
@ApiModelProperty("销售订单车辆sid") |
|
|
|
private List<String> saleVehSids; |
|
|
|
} |