12345678910111213141516171819202122232425262728293031323334 |
-
- namespace OASystem.Domain.Entities.System
- {
-
-
-
- [SugarTable("Sys_Department")]
- public class Sys_Department: EntityBase
- {
-
-
-
- [SugarColumn(IsNullable =true,ColumnDataType ="int")]
- public int CompanyId { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(20)")]
- public string DepCode { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string DepName { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int ParentDepId { get; set; }
- }
- }
|