刘光辉
12 小时以前 34981c30a78e8bbd7791131059a9210f9928b62c
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
 
 
package jnpf.message.model.accountconfig;
 
import com.alibaba.fastjson.annotation.JSONField;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.util.Date;
 
/**
 * @版本: V3.2.0
 * @版权: 引迈信息技术有限公司(https://www.jnpfsoft.com)
 * @作者: JNPF开发平台组
 * @日期: 2022-08-18
 */
@Data
public class AccountConfigListVO {
 
    @Schema(description = "id")
    private String id;
 
    /**
     * 名称
     **/
    @Schema(description = "名称")
    @JSONField(name = "fullName")
    private String fullName;
 
    /**
     * 配置类型
     **/
    @Schema(description = "配置类型")
    @JSONField(name = "type")
    private String type;
 
    /**
     * 编码
     **/
    @Schema(description = "编码")
    @JSONField(name = "enCode")
    private String enCode;
 
    /**
     * 发件人昵称
     **/
    @Schema(description = "发件人昵称")
    @JSONField(name = "addressorName")
    private String addressorName;
 
    /**
     * SMTP用户名
     **/
    @Schema(description = "SMTP用户名")
    @JSONField(name = "smtpUser")
    private String smtpUser;
 
    /**
     * 渠道
     **/
    @Schema(description = "渠道")
    @JSONField(name = "channel")
    private String channel;
 
    /**
     * 短信签名
     **/
    @Schema(description = "短信签名")
    @JSONField(name = "smsSignature")
    private String smsSignature;
 
 
    /**
     * WebHook类型
     **/
    @Schema(description = "WebHook类型")
    @JSONField(name = "webhookType")
    private String webhookType;
 
    /**
     * 排序
     **/
    @Schema(description = "排序")
    @JSONField(name = "sortCode")
    private Integer sortCode;
    /**
     * 状态
     **/
    @Schema(description = "状态")
    @JSONField(name = "enabledMark")
    private String enabledMark;
 
 
    /**
     * 创建时间
     **/
    @Schema(description = "创建时间")
    @JSONField(name = "creatorTime")
    private Date creatorTime;
 
    /**
     * 创建用户
     **/
    @Schema(description = "创建用户")
    @JSONField(name = "creatorUserId")
    private String creatorUserId;
 
    /**
     * 修改时间
     **/
    @Schema(description = "修改时间")
    @JSONField(name = "lastModifyTime")
    private Date lastModifyTime;
 
    @Schema(description = "创建人")
    private String creatorUser;
 
 
}