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

45 lines
1.0 KiB
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";
/// <summary>
/// 上次结束编号
/// </summary>
public string numberTo { get; set; }
/// <summary>
/// 原始序号
/// </summary>
public Nullable<int> origIndex { get; set; }
/// <summary>
/// 现序号
/// </summary>
public Nullable<int> currIndex { get; set; }
}
}