25 lines
547 B
C#
25 lines
547 B
C#
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 ChainStatusReportingUpInput
|
|
{
|
|
/// <summary>
|
|
/// 任务链编号
|
|
/// </summary>
|
|
public string taskChainCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 任务链任务状态
|
|
/// </summary>
|
|
public string status { get; set; }
|
|
}
|
|
}
|