Files
tnb.server/WarehouseMgr/Tnb.WarehouseMgr.Entities/Dto/Inputs/TaskCompleUpInput.cs
2023-06-16 08:58:16 +08:00

24 lines
570 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.WarehouseMgr.Entities.Dto.Inputs
{
/// <summary>
/// 任务完成输入参数
/// </summary>
public class TaskCompleUpInput
{
/// <summary>
/// 区分pda与pc端调用默认pc端忽略大小写
/// </summary>
public string prefix { get; set; }
/// <summary>
/// 任务执行Ids
/// </summary>
public List<string> disTaskIds { get; set; }
}
}