You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
629 B
29 lines
629 B
2 years ago
|
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
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 模板替换Json
|
||
|
/// </summary>
|
||
|
public string TemplateParam { get; set; }
|
||
|
/// <summary>
|
||
|
/// 模板名称
|
||
|
/// </summary>
|
||
|
public string SignName { get; set; }
|
||
|
/// <summary>
|
||
|
/// 模板代码
|
||
|
/// </summary>
|
||
|
public string TemplateCode { get; set; }
|
||
|
/// <summary>
|
||
|
/// 电话号
|
||
|
/// </summary>
|
||
|
public string PhoneNumber { get; set; }
|
||
|
}
|