You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
622 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 double CertificatesTimeOutCount { get; set; }
/// <summary>
/// 合格证补充超时量
/// </summary>
public double CertificatesSupplementTimeOutCount { get; set; }
}
}