using System.ComponentModel.DataAnnotations.Schema; namespace CRM.Core.Model.Entity { public partial class SMS_MESSAGE { [NotMapped] /// /// 每个接口自定义的编码 /// public string interfaceCode { get; set; } [NotMapped] /// /// 对应接口的发送帐号 /// public string interfaceAccount { get; set; } [NotMapped] /// /// 对应接口的帐号密码 /// public string interfacePwd { get; set; } [NotMapped] /// /// 手机号码 /// public string mobile { get; set; } } }