From c4016e3cc99ebbe8faf4fb97fc1d693005f27a1c Mon Sep 17 00:00:00 2001 From: jianghaiqing Date: Tue, 31 Jan 2023 15:03:57 +0800 Subject: [PATCH] =?UTF-8?q?=E6=88=91=E7=9A=84=E4=BB=BB=E5=8A=A1-LARA?= =?UTF-8?q?=E7=BA=B8=E5=A2=9E=E5=8A=A0=E8=AE=A1=E7=AE=97=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../TaskManagePlat/Dtos/CalcLaraPageNumbersDto.cs | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Myshipping.Application/Service/TaskManagePlat/Dtos/CalcLaraPageNumbersDto.cs b/Myshipping.Application/Service/TaskManagePlat/Dtos/CalcLaraPageNumbersDto.cs index 6630566b..805742e0 100644 --- a/Myshipping.Application/Service/TaskManagePlat/Dtos/CalcLaraPageNumbersDto.cs +++ b/Myshipping.Application/Service/TaskManagePlat/Dtos/CalcLaraPageNumbersDto.cs @@ -29,6 +29,16 @@ namespace Myshipping.Application /// /// 上次结束编号 /// - public Int32 NumberTo { get; set; } + public Int32 numberTo { get; set; } + + /// + /// 原始序号 + /// + public Nullable origIndex { get; set; } + + /// + /// 现序号 + /// + public Nullable currIndex { get; set; } } }