ComplianceServer/oldcode/Core.Model/Map/SMS_MESSAGE.cs

29 lines
744 B
C#

using System.ComponentModel.DataAnnotations.Schema;
namespace CRM.Core.Model.Entity
{
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; }
}
}