All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.bootx.platform.notice.param.sms.SmsTemplateParam Maven / Gradle / Ivy

The newest version!
package cn.bootx.platform.notice.param.sms;

import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.experimental.Accessors;

/**
 * 短信模板配置
 * @author xxm
 * @since 2023-08-03
 */
@Data
@Schema(title = "短信模板配置")
@Accessors(chain = true)
public class SmsTemplateParam {

    @Schema(description= "主键")
    private Long id;

    @Schema(description = "短信渠道商类型")
    private String supplierType;
    @Schema(description = "短信模板id")
    private String templateId;
    @Schema(description = "短信模板名称")
    private String name;
    @Schema(description = "短信模板内容")
    private String content;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy