1
This commit is contained in:
42
Gatedge.K3Cloud.Utils/Model/K3Request/Delete.cs
Normal file
42
Gatedge.K3Cloud.Utils/Model/K3Request/Delete.cs
Normal file
@@ -0,0 +1,42 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Gatedge.K3Cloud.Utils.Model.K3Request
|
||||
{
|
||||
/// <summary>
|
||||
/// 单据删除参数类
|
||||
/// </summary>
|
||||
public class Delete
|
||||
{ /// <summary>
|
||||
/// 单据内码
|
||||
/// </summary>
|
||||
public string? Ids { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 组织ID
|
||||
/// </summary>
|
||||
public long CreateOrgId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 单据编码
|
||||
/// </summary>
|
||||
public string? Numbers { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否启用网控
|
||||
/// </summary>
|
||||
public bool NetworkCtrl { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 重写
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public override string ToString()
|
||||
{
|
||||
var settings = new JsonSerializerSettings
|
||||
{
|
||||
NullValueHandling = NullValueHandling.Ignore
|
||||
};
|
||||
return JsonConvert.SerializeObject(this, settings);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user