This commit is contained in:
yuyubohh
2025-09-09 22:41:29 +08:00
commit e8494ba988
798 changed files with 252381 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
namespace RB_MES_API.Models.Cloud
{
/// <summary>
/// 单独保存单据的接口类
/// </summary>
public class DataSaveJson
{
public string[] NeedUpDateFields { get; set; } = new string[] { };
public string[] NeedReturnFields { get; set; } = new string[] { };
public bool IsDeleteEntry { get; set; } = true;
public string SubSystemId { get; set; } = string.Empty;
public bool IsVerifyBaseDataField { get; set; } = false;
public bool IsEntryBatchFill { get; set; } = true;
public bool ValidateFlag { get; set; } = true;
public bool NumberSearch { get; set; } = true;
public bool IsAutoAdjustField { get; set; } = false;
public string InterationFlags { get; set; } = string.Empty;
public string IgnoreInterationFlag { get; set; } = string.Empty;
public object Model { get; set; } = new object();
}
}