58 lines
2.1 KiB
C#
58 lines
2.1 KiB
C#
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
public partial class SMS_ACCOUNT
|
|
{
|
|
[DisplayName("帐号代码")]
|
|
[Required(ErrorMessage = "{0}不能为空")]
|
|
[StringLength(50)]
|
|
[NotMapped]
|
|
public string map_CLIENTCODE { get { return this.CLIENTCODE; } set { this.CLIENTCODE = value; } }
|
|
[DisplayName("短信平台")]
|
|
[NotMapped]
|
|
public string map_CLIENTNAME { get { return this.CLIENTNAME; } set { this.CLIENTNAME = value; } }
|
|
|
|
[DisplayName("是否禁用")]
|
|
[NotMapped]
|
|
public short map_DISABLED { get { return this.DISABLED; } set { this.DISABLED = value; } }
|
|
|
|
[DisplayName("排序号")]
|
|
[NotMapped]
|
|
public decimal? map_SORTNO { get { return this.SORTNO; } set { this.SORTNO = value; } }
|
|
|
|
[DisplayName("短信平台代码")]
|
|
[NotMapped]
|
|
[Required(ErrorMessage = "{0}不能为空")]
|
|
[StringLength(50)]
|
|
public string map_SMSSP_CODE { get { return this.SMSSP_CODE; } set { this.SMSSP_CODE = value; } }
|
|
|
|
[DisplayName("用户名")]
|
|
[NotMapped]
|
|
[Required(ErrorMessage = "{0}不能为空")]
|
|
public string map_SMSACCOUNT { get { return this.SMSACCOUNT; } set { this.SMSACCOUNT = value; } }
|
|
|
|
[DisplayName("密码")]
|
|
[NotMapped]
|
|
public string map_SMSPASSWORD { get { return this.SMSPASSWORD; } set { this.SMSPASSWORD = value; } }
|
|
|
|
[DisplayName("备注")]
|
|
[NotMapped]
|
|
public string map_REMARK { get { return this.REMARK; } set { this.REMARK = value; } }
|
|
|
|
|
|
[DisplayName("扩展字段一")]
|
|
[NotMapped]
|
|
public string map_EXTINFO1 { get { return this.EXTINFO1; } set { this.EXTINFO1 = value; } }
|
|
[DisplayName("扩展字段二")]
|
|
[NotMapped]
|
|
public string map_EXTINFO2 { get { return this.EXTINFO2; } set { this.EXTINFO2 = value; } }
|
|
[DisplayName("扩展字段三")]
|
|
[NotMapped]
|
|
public string map_EXTINFO3 { get { return this.EXTINFO3; } set { this.EXTINFO3 = value; } }
|
|
|
|
}
|
|
}
|