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.
18 lines
334 B
18 lines
334 B
using Win_in.Sfs.Shared.Domain.Shared;
|
|
|
|
namespace Win_in.Sfs.Wms.Pda.Controllers.Jobs;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class JobCountDto
|
|
{
|
|
/// <summary>
|
|
/// 任务类型
|
|
/// </summary>
|
|
public EnumJobType JobType { get; set; }
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public long Count { get; set; }
|
|
}
|
|
|