加入erp的相关服务
This commit is contained in:
30
src/WMS.Web.Core/Dto/Erp/ErpBillQueryDto.cs
Normal file
30
src/WMS.Web.Core/Dto/Erp/ErpBillQueryDto.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
using Newtonsoft.Json;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace WMS.Web.Core.Dto.Erp
|
||||
{
|
||||
/// <summary>
|
||||
/// ERP:单据查询-dto
|
||||
/// </summary>
|
||||
public class ErpBillQueryDto
|
||||
{
|
||||
public ErpBillQueryDto() { }
|
||||
|
||||
public ErpBillQueryDto(string accessToken)
|
||||
{
|
||||
this.AccessToken = accessToken;
|
||||
}
|
||||
/// <summary>
|
||||
/// 令牌
|
||||
/// </summary>
|
||||
[JsonProperty(PropertyName = "ACCESSTOKEN")]
|
||||
public string AccessToken { get; set; }
|
||||
/// <summary>
|
||||
/// 参数
|
||||
/// </summary>
|
||||
[JsonProperty(PropertyName = "data")]
|
||||
public string Data { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user