using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace YTSoft.BaseCallCenter.Model { public class LDWorkOrderCount { //部门ID public int F_DEPTID { get; set; } //部门名称 public string F_DEPTNAME { get; set; } //用户名(领导名) public string F_USERNAME { get; set; } //领导ID public int F_OWNERID { get; set; } //待派工个数 public int F_DPGCOUNT { get; set; } //待接单个数 public int F_DJDCOUNT { get; set; } //待处理个数 public int F_DCLCOUNT { get; set; } } }