Files
BarCode-Api/src/BarCode.Web.Core/Dto/Erp/ErpBillQueryDto.cs
2025-04-30 17:01:05 +08:00

41 lines
1.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
}