Files
Gatedge.NewOrientLandMark.BOS/Gatedge.K3Cloud.Utils/Model/K3Request/CancelAssign.cs
liqionghai d758497f93 1
2025-11-18 17:43:12 +08:00

47 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Gatedge.K3Cloud.Utils.Model.K3Request
{
public class CancelAssign
{
/// <summary>
/// 单据内码
/// </summary>
public string? Ids { get; set; }
/// <summary>
/// 组织ID
/// </summary>
public int CreateOrgId { get; set; }
/// <summary>
/// 单据编码
/// </summary>
public string[]? Numbers { get; set; }
/// <summary>
/// 是否启用网控布尔类型默认false非必录
/// </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);
}
}
}