盘点单对接金蝶

This commit is contained in:
18942506660
2023-12-01 16:26:01 +08:00
parent c501aa2f8c
commit c8df7c91f2
12 changed files with 156 additions and 44 deletions

View File

@@ -16,6 +16,11 @@ namespace WMS.Web.Core.Dto.Erp
{
this.AccessToken = accessToken;
}
public ErpBillQueryDto(string accessToken,string formid)
{
this.AccessToken = accessToken;
this.FormId = formid;
}
/// <summary>
/// 令牌
/// </summary>
@@ -26,5 +31,10 @@ namespace WMS.Web.Core.Dto.Erp
/// </summary>
[JsonProperty(PropertyName = "data")]
public string Data { get; set; }
/// <summary>
/// 参数(保存提交审核formId在外层)
/// </summary>
[JsonProperty(PropertyName = "formid")]
public string FormId { get; set; }
}
}