123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Dtos.Groups
- {
-
-
-
- public class QueryDelegationEnDataDto
- {
-
-
-
- public string Area { get; set; }
-
-
-
- public string Job { get; set; }
- }
-
-
-
- public class OpDelegationEnDataDto:OpBaseDto
- {
-
-
-
- public string Area { get; set; }
-
-
-
- public string Job { get; set; }
-
-
-
- public string JobEn { get; set; }
-
-
-
- public string DelegationSetting { get; set; }
-
-
-
- public string DelegationSettingEn { get; set; }
- }
- public class QueryDelegationEnDataByIdDto
- {
-
-
-
- public int Id { get; set; }
- }
- }
|