using System;
using System.Collections.Generic;
using System.Text;
namespace MadRunFabric.Model.EquipmentApi.Model
{
public class DayTjlists
{
///
/// 班组名称
///
public string deptname { get; set; }
///
/// 总接单量
///
public string daycounts { get; set; }
///
/// 已完成数量
///
public string finishcount { get; set; }
///
/// 总完结数
///
public string wfinishcount { get; set; }
///
/// 及时完成
///
public string jsfinishcount { get; set; }
///
/// 超时完成
///
public string csfinishcount { get; set; }
///
/// 未完成数量
///
public string nfinishcount { get; set; }
///
/// 完结单率
///
public string finishlv { get; set; }
///
/// 未完成率
///
public string nofinnishlv { get; set; }
///
/// 满意
///
public string mywocode { get; set; }
////
//// 一般基本满意
////
//public string ybwocode { get; set; }
///
/// 差
///
public string cwocode { get; set; }
///
/// 满意度信息
///
public string mydinfo { get; set; }
///
/// 本院
///
public string comfrom { get; set; }
///
/// 本院率
///
public string comfrombl { get; set; }
///
/// 第三方
///
public string comfroms { get; set; }
///
/// 第三方率
///
public string comfromsbl { get; set; }
///
/// 改派数量
///
public string changecount { get; set; }
}
}