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

29 lines
696 B
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 提交和审核
/// </summary>
public class ErpOperateDto
{
public ErpOperateDto(string formId, string number)
{
this.FormId = formId;
this.Numbers =new List<string>() { number };
}
/// <summary>
/// 业务对象表单Id必录
/// </summary>
[JsonProperty("FormId")]
public string FormId { get; set; }
/// <summary>
/// 单据编码
/// </summary>
public List<string> Numbers { get; set; }
}
}