TG.WXCRM.V4/Model/Entity/WX_MESSAGECOMPLIANCE.cs

90 lines
2.2 KiB
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.WX_MESSAGECOMPLIANCE")]
public partial class WX_MESSAGECOMPLIANCE
{
[Key]
public decimal PKID { get; set; }
[StringLength(50)]
public string JOBUSERNAME { get; set; }
[StringLength(50)]
public string USERNAME { get; set; }
public decimal? INNERUSERID { get; set; }
public string MESSAGE { get; set; }
public DateTime? CTIME { get; set; }
public decimal? OPERATORID { get; set; }
public decimal? MSGTYPE { get; set; }
public decimal? MSGSOURCE { get; set; }
[StringLength(128)]
public string MSGSVRID { get; set; }
[StringLength(4000)]
public string MSGURL { get; set; }
[StringLength(100)]
public string BIGTYPE { get; set; }
[StringLength(100)]
public string SUBTYPE { get; set; }
[StringLength(4000)]
public string REMARK { get; set; }
public decimal? TYPE { get; set; }
public decimal? RECORDID { get; set; }
public string SERVERID { get; set; }
public string FILENAME { get; set; }
public string RESID { get; set; }
public DateTime? ORIGINALTIME { get; set; }
public decimal? PENALTY { get; set; }
[StringLength(2000)]
public string RESULT { get; set; }
/// <summary>
/// 企业微信--用户ID
/// </summary>
public string HHUSERID { get; set; }
/// <summary>
/// 企业微信--企业号ID
/// </summary>
public string CORPID { get; set; }
/// <summary>
/// 企业微信--企业号名称
/// </summary>
public string CORPNAME { get; set; }
/// <summary>
/// 企业微信--用户名称
/// </summary>
public string HHUSERNAME { get; set; }
/// <summary>
/// 企业微信--客户ID
/// </summary>
public string EXTUSERID { get; set; }
/// <summary>
/// 企业微信--客户名称
/// </summary>
public string EXTNAME { get; set; }
}
}