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.
22 lines
576 B
22 lines
576 B
namespace BBWYB.Server.Model.Dto
|
|
{
|
|
public class TimeLimitTaskStatisticsResponse
|
|
{
|
|
public long ShopId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 采购超时率(%)
|
|
/// </summary>
|
|
public double PurchaseTimeOutPercent { get; set; }
|
|
|
|
/// <summary>
|
|
/// 合格证拟定超时量
|
|
/// </summary>
|
|
public double CertificatesTimeOutCount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 合格证补充超时量
|
|
/// </summary>
|
|
public double CertificatesSupplementTimeOutCount { get; set; }
|
|
}
|
|
}
|
|
|