25 lines
615 B
C#
25 lines
615 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace VOL.Entity.DomainModels.DeptShip.SystemDept
|
|
{
|
|
public class HR_DingTalkDept
|
|
{
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
[Key]
|
|
public int dept_id { get; set; }
|
|
public bool auto_add_user { get; set; }
|
|
public bool create_dept_group { get; set; }
|
|
|
|
public string name { get; set; }
|
|
public int parent_id { get; set; }
|
|
|
|
public string ext { get; set; }
|
|
}
|
|
}
|