25 lines
601 B
25 lines
601 B
namespace BBWYB.Server.Model.Dto
|
|
{
|
|
public class TimeLimitTaskStatisticsResponse
|
|
{
|
|
public long ShopId { get; set; }
|
|
|
|
public string ShopName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 采购超时率(%)
|
|
/// </summary>
|
|
public double PurchaseTimeOutPercent { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 合格证补充超时量
|
|
/// </summary>
|
|
public int? CerEditTimeOutCount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 合格证拟定超时量
|
|
/// </summary>
|
|
public int? CerConfigTimeOutCount { get; set; }
|
|
}
|
|
}
|
|
|