using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// /// public class CalcLaraPageNumbersDto { /// /// 请求LARA纸列表 /// public List paperList { get; set; } /// /// 当前任务主键 /// public string taskPkId { get; set; } /// /// 移动方向 up-向上 down-向下 /// public string moveType { get; set; } /// /// 上次结束编号 /// public string numberTo { get; set; } /// /// 原始序号 /// public Nullable origIndex { get; set; } /// /// 现序号 /// public Nullable currIndex { get; set; } } }