Merge branch 'dev' of https://git.tuotong-tech.com/tnb/tnb.server into dev
This commit is contained in:
@@ -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; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user