添加项目文件。
This commit is contained in:
40
src/BarCode.Web.Core/Dto/Erp/ErpBillQueryDto.cs
Normal file
40
src/BarCode.Web.Core/Dto/Erp/ErpBillQueryDto.cs
Normal file
@@ -0,0 +1,40 @@
|
||||
using Newtonsoft.Json;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace BarCode.Web.Core.Dto.Erp
|
||||
{
|
||||
/// <summary>
|
||||
/// ERP:单据查询-dto
|
||||
/// </summary>
|
||||
public class ErpBillQueryDto
|
||||
{
|
||||
public ErpBillQueryDto() { }
|
||||
|
||||
public ErpBillQueryDto(string accessToken)
|
||||
{
|
||||
this.AccessToken = accessToken;
|
||||
}
|
||||
public ErpBillQueryDto(string accessToken,string formid)
|
||||
{
|
||||
this.AccessToken = accessToken;
|
||||
this.FormId = formid;
|
||||
}
|
||||
/// <summary>
|
||||
/// 令牌
|
||||
/// </summary>
|
||||
[JsonProperty(PropertyName = "ACCESSTOKEN")]
|
||||
public string AccessToken { get; set; }
|
||||
/// <summary>
|
||||
/// 参数
|
||||
/// </summary>
|
||||
[JsonProperty(PropertyName = "data")]
|
||||
public string Data { get; set; }
|
||||
/// <summary>
|
||||
/// 参数(保存提交审核formId在外层)
|
||||
/// </summary>
|
||||
[JsonProperty(PropertyName = "formid")]
|
||||
public string FormId { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user