shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
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
package com.iplatform.model.vo;
 
import java.io.Serializable;
 
/**
 * 提醒通知,消息模板配置对象。
 * @author 时克英
 * @date 2023-08-25
 */
public class NotificationConfigVo implements Serializable {
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getTempId() {
        return tempId;
    }
 
    public void setTempId(String tempId) {
        this.tempId = tempId;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getTempKey() {
        return tempKey;
    }
 
    public void setTempKey(String tempKey) {
        this.tempKey = tempKey;
    }
 
    public String getContent() {
        return content;
    }
 
    public void setContent(String content) {
        this.content = content;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
 
    //    @ApiModelProperty(value = "id")
    private Long id;
 
//    @ApiModelProperty(value = "模板id(公用)")
    private String tempId;
 
//    @ApiModelProperty(value = "模板说明(短信)")
    private String title;
 
//    @ApiModelProperty(value = "模板编号(公用)")
    private String tempKey;
 
//    @ApiModelProperty(value = "内容(公用)")
    private String content;
 
//    @ApiModelProperty(value = "模板名")
    private String name;
 
//    @ApiModelProperty(value = "状态,1-开启,2-关闭")
    private Integer status;
}