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; } = "down";
}
}