123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- using OASystem.Domain.Entities.System;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.ViewModels.System
- {
- public class DepartmentIView
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public string DepCode { get; set; }
-
-
-
- public int CompanyId { get; set; }
-
-
-
- public string CompanyName { get; set; }
-
-
-
- public string DepName { get; set; }
-
-
-
- public int ParentDepId { get; set; }
-
-
-
- public string ParentDepName { get; set; }
-
-
-
- public string Remark { get; set; }
- }
- public class DepartmentView
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public int CompanyId { get; set; }
-
-
-
- public string? DepName { get; set; }
- }
- }
|