Files
RBMESAPICore/Models/Cloud/interface/RequestData.cs
yuyubohh e8494ba988 qqq
2025-09-09 22:41:29 +08:00

13 lines
430 B
C#

namespace RB_MES_API.Models.Cloud
{
public class RequestData
{
public string CreateOrgId { get; set; } = "0";
public string[] Numbers { get; set; } = new string[0];
public string Ids { get; set; } = string.Empty;
public List<PkEntryId> PkEntryIds { get; set; }
public bool NetworkCtrl { get; set; } = false;
public bool IgnoreInterationFlag { get; set; } = true;
}
}