You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
704 B
C#
27 lines
704 B
C#
namespace DS.WMS.Core.System.Dtos;
|
|
/// <summary>
|
|
/// 集合提醒统计
|
|
/// </summary>
|
|
public class CollectWarningCount
|
|
{
|
|
public int LineDetectionCount { get; set; }= 0;
|
|
|
|
public int ThermometryCount { get; set; }= 0;
|
|
|
|
public int FireAlarmCount { get; set; }= 0;
|
|
public int WmsInPlanCount { get; set; }= 0;
|
|
|
|
public int WmsOutPlanCount { get; set; }= 0;
|
|
|
|
public int WmsClearanceCount { get; set; }= 0;
|
|
|
|
public int GoodsAuditCount { get; set; }= 0;
|
|
|
|
public int ClientAuditCount { get; set; } = 0;
|
|
|
|
public int ContractCount { get; set; } = 0;
|
|
|
|
public int WmsInDoCount { get; set; }= 0;
|
|
|
|
public int WmsOutDoCount { get; set; }= 0;
|
|
} |