Laservall_manager_system/VOL.YSErp/Models/Biz/YSERPDepartment.cs

49 lines
1.7 KiB
C#
Raw Normal View History

2025-09-26 13:35:45 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.Json.Serialization;
2025-09-26 13:35:45 +08:00
using System.Threading.Tasks;
namespace VOL.YSErp.Models.Biz
{
public class YSERPDepartment
{
/*
*
orgtype int 1 2
code string
sysid string
displayorder int
parentid string
dr int 0 1
parentCode string
parentorgid string
enable long 0 1 2
is_biz_unit int 0 1
tenantid string
name string
id string ID
pubts string yyyy-MM-dd HH:mm:ss
*/
public int orgtype { get; set; }
public string code { get; set; }
public string sysid { get; set; }
public int displayorder { get; set; }
public string parentid { get; set; }
public int dr { get; set; }
public string parentCode { get; set; }
public string parentorgid { get; set; }
public int enable { get; set; }
public int is_biz_unit { get; set; }
public string tenantid { get; set; }
public string name { get; set; }
public string id { get; set; }
public string pubts { get; set; }
[JsonIgnore]
public List<YSERPDepartment> subDepts { get; set; } = [];
2025-09-26 13:35:45 +08:00
}
}