22 lines
919 B
C#
22 lines
919 B
C#
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();
|
|
}
|
|
}
|