using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Pcb.Domain
{
public class EngineerKPIVM
{
///
/// 样品投料工单(款)
///
public int YFeedCount { get; set; }
///
/// 批量投料工单(款)
///
public int PFeedCount { get; set; }
///
/// 样品订单(单)
///
public int YCount { get; set; }
///
/// 批量订单(单)
///
public int PCount { get; set; }
///
/// 优品订单(单)
///
public int YouCount { get; set; }
///
/// 客诉(单)
///
public int KeCount { get; set; }
///
/// 厂内报废(单)
///
public int CNCount { get; set; }
///
/// 拼板利用率
///
public double PinBanUSERate { get; set; }
///
/// 总不良比率
///
public decimal ToTalBadRate { get; set; }
}
}