ComplianceServer/oldcode/Model/Entity/WX_MESSAGE.cs

80 lines
1.9 KiB
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.WX_MESSAGE")]
public partial class WX_MESSAGE
{
public decimal? MSGID { get; set; }
[StringLength(100)]
public string MSGSVRID { get; set; }
public short? STATUS { get; set; }
public short? ISSEND { get; set; }
public decimal? ISSHOWTIMER { get; set; }
public decimal? CREATETIME { get; set; }
[StringLength(100)]
public string TALKER { get; set; }
[StringLength(100)]
public string IMGPATH { get; set; }
[StringLength(200)]
public string RESERVED { get; set; }
[StringLength(100)]
public string LVBUFFER { get; set; }
[StringLength(100)]
public string TRANSCONTENT { get; set; }
[StringLength(1000)]
public string TRANSBRANDWORDING { get; set; }
public decimal? TALKERID { get; set; }
[StringLength(100)]
public string BIZCLIENTMSGID { get; set; }
public decimal? BIZCHATID { get; set; }
[StringLength(100)]
public string BIZCHATUSERID { get; set; }
public decimal? MSGSEQ { get; set; }
public short? FLAG { get; set; }
[StringLength(200)]
public string USERNAME { get; set; }
[StringLength(100)]
public string NICKNAME { get; set; }
public short? YUNSTATUS { get; set; }
public short? UPSTATUS { get; set; }
public DateTime? CTIME { get; set; }
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public long PKID { get; set; }
public long? MSG_TYPE { get; set; }
[StringLength(2000)]
public string MSG_CONTENT { get; set; }
[StringLength(200)]
public string MSG_URL { get; set; }
}
}