43 lines
1000 B
C#
43 lines
1000 B
C#
|
|
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);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|