调整调用第三方接口代码

This commit is contained in:
alex
2023-08-02 10:23:15 +08:00
parent ab4d0544df
commit a82079b96d
4 changed files with 50 additions and 4 deletions

View File

@@ -0,0 +1,24 @@
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; }
}
}