33 lines
1018 B
C#
33 lines
1018 B
C#
|
|
using SqlSugar;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.ComponentModel.DataAnnotations;
|
|||
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Security.Principal;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace VOL.Entity.DomainModels.DeptShip.SystemDept
|
|||
|
|
{
|
|||
|
|
public class HR_YSDept
|
|||
|
|
{
|
|||
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|||
|
|
[Key]
|
|||
|
|
public string id { get; set; }
|
|||
|
|
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 pubts { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|