namespace WX.CRM.Model.Entity { using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; [Table("UPDEV.SMS_ACCOUNT")] public partial class SMS_ACCOUNT { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public SMS_ACCOUNT() { SMS_MSGTYPE_CLIENT = new HashSet(); } [Key] [StringLength(50)] public string CLIENTCODE { get; set; } [Required] [StringLength(50)] public string CLIENTNAME { get; set; } public short DISABLED { get; set; } public decimal? SORTNO { get; set; } [StringLength(50)] public string SMSSP_CODE { get; set; } [StringLength(50)] public string SMSACCOUNT { get; set; } [StringLength(50)] public string SMSPASSWORD { get; set; } [StringLength(200)] public string REMARK { get; set; } [StringLength(50)] public string EXTINFO1 { get; set; } [StringLength(50)] public string EXTINFO2 { get; set; } [StringLength(50)] public string EXTINFO3 { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection SMS_MSGTYPE_CLIENT { get; set; } } }