1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Groups
- {
-
-
-
- [SugarTable("Grp_DelegationEnData")]
- public class Grp_DelegationEnData:EntityBase
- {
-
-
-
- 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; }
- }
- }
|