using System.ComponentModel; namespace Zxd.Entity.Dncms { /// /// /// [Description("")] [Table("weworkuser2eid")] public class weworkuser2eid { /// /// /// [Key] [Required(ErrorMessage ="必填")] [Description("")] public int? id { get; set; } /// /// /// [Required(ErrorMessage ="必填")] [Description("")] public string appid { get; set; } /// /// /// [Required(ErrorMessage ="必填")] [Description("")] public string userid { get; set; } /// /// /// [Description("")] public int? eid { get; set; } /// /// 未审核 = 0, 参与分配 = 1, 暂停分配 = 2, 永久下线 = /// [Description("未审核 = 0, 参与分配 = 1, 暂停分配 = 2, 永久下线 =")] public int? status { get; set; } /// /// /// [Description("")] public int? deptid { get; set; } /// /// /// [Description("")] public int? ch { get; set; } /// /// 参与分配状态 0、不分配 1、分配 /// [Description("参与分配状态 0、不分配 1、分配")] public int? assignstatus { get; set; } /// /// /// [Description("")] public int? errcode { get; set; } /// /// /// [Description("")] public DateTime? ctime { get; set; } /// /// /// [Description("")] public DateTime? utime { get; set; } /// /// /// [Description("")] public DateTime? synchrotime { get; set; } /// /// /// [Description("")] public int? waycodes { get; set; } /// /// /// [Description("")] public int? totalwaycodes { get; set; } } }