using Volo.Abp.Modularity;
using Volo.Abp.Sms;
namespace Win_in.Sfs.Message.Application;
[DependsOn(
//...other dependencies
typeof(AbpSmsModule) //Add the new module dependency
)]
public class SmsMessageSendModel
{
///
/// 模板替换Json
///
public string TemplateParam { get; set; }
///
/// 模板名称
///
public string SignName { get; set; }
///
/// 模板代码
///
public string TemplateCode { get; set; }
///
/// 电话号
///
public string PhoneNumber { get; set; }
}