ComplianceServer/oldcode/Model/Entity/WX_JOBBIZINFO.cs

89 lines
2.1 KiB
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.WX_JOBBIZINFO")]
public partial class WX_JOBBIZINFO
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public long PKID { get; set; }
[Required]
[StringLength(200)]
public string USERNAME { get; set; }
[StringLength(200)]
public string BRANDLIST { get; set; }
[StringLength(200)]
public string BRANDLISTVERSION { get; set; }
[StringLength(200)]
public string BRANDLISTCONTENT { get; set; }
public decimal? BRANDFLAG { get; set; }
[StringLength(100)]
public string EXTINFO { get; set; }
[StringLength(100)]
public string BRANDINFO { get; set; }
[StringLength(100)]
public string BRANDICONURL { get; set; }
public decimal? UPDATETIME { get; set; }
public decimal? HADALERT { get; set; }
public decimal? ACCEPTTYPE { get; set; }
public decimal? TYPE { get; set; }
public decimal? STATUS { get; set; }
[StringLength(100)]
public string ENTERPRISEFATHER { get; set; }
[StringLength(50)]
public string KFWORKERID { get; set; }
public decimal? SPECIALTYPE { get; set; }
[StringLength(100)]
public string ATTRSYNCVERSION { get; set; }
public decimal? INCREMENTUPDATETIME { get; set; }
public decimal? BITFLAG { get; set; }
[StringLength(50)]
public string ALIAS { get; set; }
[StringLength(20)]
public string MOBILE { get; set; }
[StringLength(50)]
public string NICKNAME { get; set; }
[StringLength(100)]
public string CONREMARK { get; set; }
[StringLength(100)]
public string UIN { get; set; }
[StringLength(100)]
public string WEIXINSTRPATH { get; set; }
public DateTime? CTIME { get; set; }
public DateTime? UTIME { get; set; }
[StringLength(18)]
public string RESID { get; set; }
}
}