You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Sln.Wcs/Sln.Wcs.Api/Domain/Model/GenAgvSchedulingTaskResultM...

57 lines
1.4 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
#region << 版 本 注 释 >>
/*--------------------------------------------------------------------
* (c) 2026 WenJY
* CLR4.0.30319.42000
* T14-GEN3-7895
* Sln.Wcs.Api.Domain.Model
* a31bd1f2-40e6-4286-82a8-aeb545a5db4c
*
* WenJY
*
* 2026-02-25 10:15:15
* V1.0.0
*
*
*--------------------------------------------------------------------
*
*
*
*
* V1.0.0
*--------------------------------------------------------------------*/
#endregion << 版 本 注 释 >>
namespace Sln.Wcs.Api.Domain.Model
{
/// <summary>
/// 生成任务单返回实体
/// </summary>
public class GenAgvSchedulingTaskResultModel
{
/// <summary>
/// 返回码
/// </summary>
public string code { get;set; }
/// <summary>
/// 返回消息
/// </summary>
public string message { get;set; }
/// <summary>
/// 请求编号
/// </summary>
public string reqCode { get;set; }
/// <summary>
/// 自定义返回(返回任务单号)
/// </summary>
public string data { get;set; }
}
}