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