This commit is contained in:
DEVICE8\12494
2023-05-08 17:01:57 +08:00
58 changed files with 143 additions and 30 deletions

View File

@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.ProductionMgr.Entities.Dto
{
/// <summary>
/// 生产任务单下发输入参数
/// </summary>
public class PrdTaskReleaseUpInput
{
/// <summary>
/// 生产任务ID列表
/// </summary>
public List<string> TaskIds { get; set; }
/// <summary>
/// 行为:
///<br/> Release(任务下发),
///<br/> Start(任务开始),
///<br/> Closed(任务关闭),
///<br/> Compled(任务完成)
/// </summary>
public string Behavior { get; set; }
}
}