liukangdong
2025-01-10 07c1ebfe7589fd68363a9cb72301359f953658d3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.doumee.dao.business.vo;
 
import com.doumee.dao.business.model.YwTempConfig;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
/**
 * Created by IntelliJ IDEA.
 *
 * @Author : Rk
 * @create 2025/1/8 15:32
 */
@Data
public class YwCallTempDataVO {
 
    @ApiModelProperty(value = "短息模板", example = "1")
    private YwTempConfig smsTemp;
 
    @ApiModelProperty(value = "邮件信息模板", example = "1")
    private YwTempConfig emailTemp;
 
    @ApiModelProperty(value = "租赁通知单模板", example = "1")
    private YwTempConfig leaseTemp;
 
    @ApiModelProperty(value = "其他通知单模板", example = "1")
    private YwTempConfig otherTemp;
 
    @ApiModelProperty(value = "模板关键字 - 账单", example = "1")
    private List<YwTempConfig> billTempList;
 
    @ApiModelProperty(value = "模板关键字 - 合同", example = "1")
    private List<YwTempConfig> contractTempList;
 
    @ApiModelProperty(value = "模板关键字 - 其他", example = "1")
    private List<YwTempConfig> otherTempList;
 
}