|
|
|
|
@ -6,6 +6,7 @@ import lombok.Data;
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
|
|
|
|
|
|
// TODO @puhui999:缺导出
|
|
|
|
|
@Schema(description = "管理后台 - CRM 回款计划 Response VO")
|
|
|
|
|
@Data
|
|
|
|
|
public class CrmReceivablePlanRespVO {
|
|
|
|
|
@ -13,35 +14,44 @@ public class CrmReceivablePlanRespVO {
|
|
|
|
|
@Schema(description = "编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "2")
|
|
|
|
|
private Long id;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "回款编号", example = "19852")
|
|
|
|
|
private Long receivableId;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "期数", requiredMode = Schema.RequiredMode.REQUIRED, example = "2")
|
|
|
|
|
private Integer period;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "计划回款金额", requiredMode = Schema.RequiredMode.REQUIRED, example = "9000")
|
|
|
|
|
private BigDecimal price;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "计划回款日期", requiredMode = Schema.RequiredMode.REQUIRED, example = "2024-02-02")
|
|
|
|
|
private LocalDateTime returnTime;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "提前几天提醒", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
|
|
|
|
|
private Integer remindDays;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "提醒日期", requiredMode = Schema.RequiredMode.REQUIRED, example = "2024-02-02")
|
|
|
|
|
private LocalDateTime remindTime;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "客户编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "2")
|
|
|
|
|
private Long customerId;
|
|
|
|
|
@Schema(description = "客户名字", requiredMode = Schema.RequiredMode.REQUIRED, example = "test")
|
|
|
|
|
private String customerName;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "合同编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "2")
|
|
|
|
|
private Long contractId;
|
|
|
|
|
@Schema(description = "合同编号", example = "Q110")
|
|
|
|
|
private String contractNo;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "负责人编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "2")
|
|
|
|
|
private Long ownerUserId;
|
|
|
|
|
@Schema(description = "负责人", example = "test")
|
|
|
|
|
private String ownerUserName;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "计划回款日期", requiredMode = Schema.RequiredMode.REQUIRED, example = "2024-02-02")
|
|
|
|
|
private LocalDateTime returnTime;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "回款方式", example = "1")
|
|
|
|
|
private Integer returnType; // 来自 Receivable 的 returnType 字段
|
|
|
|
|
|
|
|
|
|
@Schema(description = "显示顺序")
|
|
|
|
|
private Integer sort;
|
|
|
|
|
@Schema(description = "计划回款金额", requiredMode = Schema.RequiredMode.REQUIRED, example = "9000")
|
|
|
|
|
private BigDecimal price;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "回款编号", example = "19852")
|
|
|
|
|
private Long receivableId;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "完成状态", requiredMode = Schema.RequiredMode.REQUIRED, example = "true")
|
|
|
|
|
private Boolean finishStatus;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "提前几天提醒", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
|
|
|
|
|
private Integer remindDays;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "提醒日期", requiredMode = Schema.RequiredMode.REQUIRED, example = "2024-02-02")
|
|
|
|
|
private LocalDateTime remindTime;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "备注", example = "备注")
|
|
|
|
|
private String remark;
|
|
|
|
|
@ -49,25 +59,10 @@ public class CrmReceivablePlanRespVO {
|
|
|
|
|
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)
|
|
|
|
|
private LocalDateTime createTime;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "客户名字", requiredMode = Schema.RequiredMode.REQUIRED, example = "test")
|
|
|
|
|
private String customerName;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "合同编号", example = "Q110")
|
|
|
|
|
private String contractNo;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "负责人", example = "test")
|
|
|
|
|
private String ownerUserName;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "创建人", example = "25682")
|
|
|
|
|
private String creator;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "创建人名字", example = "test")
|
|
|
|
|
private String creatorName;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "完成状态", requiredMode = Schema.RequiredMode.REQUIRED, example = "2")
|
|
|
|
|
private Boolean finishStatus;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "回款方式", example = "1")
|
|
|
|
|
private Integer returnType; // 来自 Receivable 的 returnType 字段
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|