ComplianceServer/oldcode/Core.Model/Entity/SMS_ACCOUNT.cs

51 lines
1.2 KiB
C#

namespace CRM.Core.Model.Entity
{
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("SMS_ACCOUNT")]
public partial class SMS_ACCOUNT
{
public SMS_ACCOUNT()
{
SMS_MSGTYPE_CLIENT = new HashSet<SMS_MSGTYPE_CLIENT>();
}
[Key]
[StringLength(6)]
public string CLIENTCODE { get; set; }
[Required]
[StringLength(50)]
public string CLIENTNAME { get; set; }
public short DISABLED { get; set; }
public decimal? SORTNO { get; set; }
[StringLength(4)]
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; }
public virtual ICollection<SMS_MSGTYPE_CLIENT> SMS_MSGTYPE_CLIENT { get; set; }
}
}