Files
RBMESAPICore/Models/Cloud/interface/AuditJson.cs

17 lines
543 B
C#
Raw Normal View History

2025-09-09 22:41:29 +08:00
namespace RB_MES_API.Models.Cloud
{
/// <summary>
/// 提交单据的接口类
/// </summary>
public class AuditJson
{
public int CreateOrgId { get; set; }
public string[] Numbers { get; set; }
public string Ids { get; set; } = string.Empty;
public string InterationFlags { get; set; } = string.Empty;
public bool NetworkCtrl { get; set; } = false;
public bool IsVerifyProcInst { get; set; } = false;
public bool IgnoreInterationFlag { get; set; } = true;
}
}