29 lines
746 B
C#
29 lines
746 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
public partial class SMS_MESSAGE
|
|
{
|
|
[NotMapped]
|
|
/// <summary>
|
|
/// 每个接口自定义的编码
|
|
/// </summary>
|
|
public string interfaceCode { get; set; }
|
|
[NotMapped]
|
|
/// <summary>
|
|
/// 对应接口的发送帐号
|
|
/// </summary>
|
|
public string interfaceAccount { get; set; }
|
|
[NotMapped]
|
|
/// <summary>
|
|
/// 对应接口的帐号密码
|
|
/// </summary>
|
|
public string interfacePwd { get; set; }
|
|
[NotMapped]
|
|
/// <summary>
|
|
/// 手机号码
|
|
/// </summary>
|
|
public string mobile { get; set; }
|
|
}
|
|
}
|