📖 CRM:code review 跟进记录的实现
parent
d80406acbb
commit
e79c750b46
@ -1,25 +0,0 @@
|
|||||||
package cn.iocoder.yudao.module.crm.controller.admin.receivable.vo.plan;
|
|
||||||
|
|
||||||
import cn.iocoder.yudao.framework.common.validation.InEnum;
|
|
||||||
import cn.iocoder.yudao.module.crm.enums.permission.CrmPermissionLevelEnum;
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
|
||||||
import jakarta.validation.constraints.NotNull;
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
@Schema(description = "管理后台 - CRM 回款计划转移 Request VO")
|
|
||||||
@Data
|
|
||||||
public class CrmReceivablePlanTransferReqVO {
|
|
||||||
|
|
||||||
@Schema(description = "回款计划编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "10430")
|
|
||||||
@NotNull(message = "回款计划编号不能为空")
|
|
||||||
private Long id;
|
|
||||||
|
|
||||||
@Schema(description = "新负责人的用户编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "10430")
|
|
||||||
@NotNull(message = "新负责人的用户编号不能为空")
|
|
||||||
private Long newOwnerUserId;
|
|
||||||
|
|
||||||
@Schema(description = "老负责人加入团队后的权限级别", requiredMode = Schema.RequiredMode.REQUIRED, example = "2")
|
|
||||||
@InEnum(value = CrmPermissionLevelEnum.class)
|
|
||||||
private Integer oldOwnerPermissionLevel; // 老负责人加入团队后的权限级别。如果 null 说明移除
|
|
||||||
|
|
||||||
}
|
|
||||||
@ -1,25 +0,0 @@
|
|||||||
package cn.iocoder.yudao.module.crm.controller.admin.receivable.vo.receivable;
|
|
||||||
|
|
||||||
import cn.iocoder.yudao.framework.common.validation.InEnum;
|
|
||||||
import cn.iocoder.yudao.module.crm.enums.permission.CrmPermissionLevelEnum;
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
|
||||||
import jakarta.validation.constraints.NotNull;
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
@Schema(description = "管理后台 - CRM 回款转移 Request VO")
|
|
||||||
@Data
|
|
||||||
public class CrmReceivableTransferReqVO {
|
|
||||||
|
|
||||||
@Schema(description = "回款编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "10430")
|
|
||||||
@NotNull(message = "回款编号不能为空")
|
|
||||||
private Long id;
|
|
||||||
|
|
||||||
@Schema(description = "新负责人的用户编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "10430")
|
|
||||||
@NotNull(message = "新负责人的用户编号不能为空")
|
|
||||||
private Long newOwnerUserId;
|
|
||||||
|
|
||||||
@Schema(description = "老负责人加入团队后的权限级别", requiredMode = Schema.RequiredMode.REQUIRED, example = "2")
|
|
||||||
@InEnum(value = CrmPermissionLevelEnum.class)
|
|
||||||
private Integer oldOwnerPermissionLevel; // 老负责人加入团队后的权限级别。如果 null 说明移除
|
|
||||||
|
|
||||||
}
|
|
||||||
Loading…
Reference in New Issue