huminmin
7 天以前 481eb2249f2886c3a6ea8445820a2ec5f153d4da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package cn.iocoder.yudao.module.crm.controller.admin.contract.vo.config;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
@Schema(description = "管理后台 - CRM 合同配置 Response VO")
@Data
public class CrmContractConfigRespVO {
 
    @Schema(description = "是否开启提前提醒", example = "true")
    private Boolean notifyEnabled;
 
    @Schema(description = "提前提醒天数", example = "2")
    private Integer notifyDays;
 
}