qqq
This commit is contained in:
21
Models/Cloud/interface/DataSaveJson.cs
Normal file
21
Models/Cloud/interface/DataSaveJson.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user