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.

33 lines
776 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Sln.Wcs.Model.Dto
{
public class TaskInfo
{
/// <summary>
/// 物料类型
/// </summary>
public string? MaterialType { get; set; }
/// <summary>
/// 任务类型
/// </summary>
public string? TaskType { get; set; }
/// <summary>
/// 任务起点
/// </summary>
public string? TaskStartPoint { get; set; }
/// <summary>
/// 任务终点
/// </summary>
public string? TaskEndPoint { get; set; }
/// <summary>
/// 优先级
/// </summary>
public int Prority { get; set; }
}
}