49 lines
1.9 KiB
C#
49 lines
1.9 KiB
C#
using System;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
public partial class SMS_BATCHMSG
|
|
{
|
|
[DisplayName("批次")]
|
|
[NotMapped]
|
|
public decimal map_BATCHID { get { return this.BATCHID; } set { this.BATCHID = value; } }
|
|
[DisplayName("短信内容")]
|
|
[NotMapped]
|
|
public string map_MESSAGE { get { return this.MESSAGE; } set { this.MESSAGE = value; } }
|
|
[DisplayName("类型编码")]
|
|
[NotMapped]
|
|
public string map_TYPECODE { get { return this.TYPECODE; } set { this.TYPECODE = value; } }
|
|
[DisplayName("子类ID")]
|
|
[NotMapped]
|
|
public Nullable<decimal> map_SUBTYPEID { get { return this.SUBTYPEID; } set { this.SUBTYPEID = value; } }
|
|
[DisplayName("接口编码")]
|
|
[NotMapped]
|
|
public string map_CLIENTCODE { get { return this.CLIENTCODE; } set { this.CLIENTCODE = value; } }
|
|
[DisplayName("提交时间")]
|
|
[NotMapped]
|
|
public System.DateTime map_CTIME { get { return this.CTIME; } set { this.CTIME = value; } }
|
|
[DisplayName("提交人ID")]
|
|
[NotMapped]
|
|
public decimal map_CREATEUSER { get { return this.CREATEUSER; } set { this.CREATEUSER = value; } }
|
|
[DisplayName("短信类型")]
|
|
[NotMapped]
|
|
public string map_TYPECODENAME { get; set; }
|
|
[DisplayName("发送平台")]
|
|
[NotMapped]
|
|
public string map_CLIENTENAME { get; set; }
|
|
[DisplayName("提交人")]
|
|
[NotMapped]
|
|
public string map_CREATEUSERNAME { get; set; }
|
|
[NotMapped]
|
|
public string interfaceCode { get; set; }
|
|
[NotMapped]
|
|
public string interfaceAccount { get; set; }
|
|
[NotMapped]
|
|
public string interfacePwd { get; set; }
|
|
[NotMapped]
|
|
public decimal numberCount { get; set; }
|
|
}
|
|
}
|