zhongrj
2023-06-30 1581ef5a1b4e24ecf21fd95ee6e4b9bd4085b2da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package cn.gistack.alerts.sms.vo;
 
import cn.gistack.alerts.sms.entity.SmsResult;
import lombok.Data;
 
/**
 * 短信发送结果vo
 * @author zhongrj
 */
@Data
public class SmsResultVO extends SmsResult {
 
    /**
     * 是否导出,不为空是导出,不分页
     */
    private Integer isExport;
 
    /**
     * 模板内容
     */
    private String templateContent;
}