优化金蝶获取数据

This commit is contained in:
tongfei
2023-10-28 08:57:10 +08:00
parent 652cc6ef84
commit f4293f8862
12 changed files with 208 additions and 24 deletions

View File

@@ -41,11 +41,11 @@ namespace WMS.Web.Core.Dto.Erp
/// <summary>
/// 开始行索引,整型(非必录)
/// </summary>
public int StartRow { get; set; } = 1;
public int StartRow { get; set; } = 0;
/// <summary>
/// 最大行数整型不能超过10000非必录
/// </summary>
public int Limit { get; set; } = 2;
public int Limit { get; set; } = 1;
/// <summary>
/// 表单所在的子系统内码,字符串类型(非必录)

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto.Erp.Org
{
public class ErpOrgDto
{
/// <summary>
/// Id
/// </summary>
public int Id { get; set; }
public string Name { get; set; }
}
}