yangys
2024-04-04 ed4a5236bab800094be4a8378f5098eebe3de6ac
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
package com.qianwen.smartman.modules.notify.dto;
 
import io.swagger.annotations.ApiModelProperty;
import javax.validation.constraints.NotNull;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/notify/dto/SendNotifyRequest.class */
public class SendNotifyRequest {
    @NotNull
    @ApiModelProperty("动态调试内容")
    private String template;
    @ApiModelProperty("通知类型")
    private String type;
    @ApiModelProperty("通知服务商ID")
    private String provider;
    @NotNull
    @ApiModelProperty("被通知者")
    private String notifiedParty;
 
    public void setTemplate(final String template) {
        this.template = template;
    }
 
    public void setType(final String type) {
        this.type = type;
    }
 
    public void setProvider(final String provider) {
        this.provider = provider;
    }
 
    public void setNotifiedParty(final String notifiedParty) {
        this.notifiedParty = notifiedParty;
    }
 
    public String getTemplate() {
        return this.template;
    }
 
    public String getType() {
        return this.type;
    }
 
    public String getProvider() {
        return this.provider;
    }
 
    public String getNotifiedParty() {
        return this.notifiedParty;
    }
}