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; 
 | 
  
 | 
} 
 |