using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Zxd.Entity.Dncms { public class Assign { /// /// 工号 /// [Key] public int? eid { get; set; } /// /// 组id /// [Key] public int? salegroupid { get; set; } /// /// 分配次数 /// public int? allocations { get; set; } = 0; /// /// 今天分配量(次数) /// public int? todayallocations { get; set; } = 0; /// /// 分配资源量 /// public int? quantity { get; set; } = 0; /// /// 今天分配资源量 /// public int? todayquantity { get; set; } = 0; /// /// 最后分配时间 /// public DateTime? lasttime { get; set; } /// /// 推广分配量(次数) /// public int? tgallocations { get; set; } = 0; /// /// 推广今天分配量(次数) /// public int? tgtodayallocations { get; set; } = 0; /// /// 推广最后分配时间 /// public DateTime? tglasttime { get; set; } /// /// 推广资源量 /// public int? tgquantity { get; set; } = 0; } }