修复bug
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user