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.
BookingHeChuan/Myshipping.Application/Service/TaskManagePlat/Dtos/CalcLaraPageNumbersDto.cs

30 lines
670 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
/// <summary>
///
/// </summary>
public class CalcLaraPageNumbersDto
{
/// <summary>
/// 请求LARA纸列表
/// </summary>
public List<LaraPaperRegistPostDto> paperList { get; set; }
/// <summary>
/// 当前任务主键
/// </summary>
public string taskPkId { get; set; }
/// <summary>
/// 移动方向 up-向上 down-向下
/// </summary>
public string moveType { get; set; } = "down";
}
}