修复bug

This commit is contained in:
18942506660
2023-12-11 11:29:13 +08:00
parent 737742925f
commit 257ab7d7e1
10 changed files with 32 additions and 30 deletions

View File

@@ -10,10 +10,10 @@ namespace WMS.Web.Core.Dto.Erp
/// </summary>
public class ErpOperateDto
{
public ErpOperateDto(string formId, string id)
public ErpOperateDto(string formId, string number)
{
this.FormId = formId;
this.Ids = id;
this.Numbers =new List<string>() { number };
}
/// <summary>
/// 业务对象表单Id必录
@@ -21,8 +21,8 @@ namespace WMS.Web.Core.Dto.Erp
[JsonProperty("FormId")]
public string FormId { get; set; }
/// <summary>
/// 单据Id
/// 单据编码
/// </summary>
public string Ids { get; set; }
public List<string> Numbers { get; set; }
}
}