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.
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; }
|
|
}
|
|
}
|
|
|