12345678910111213141516171819202122232425262728293031323334353637 |
- using Datory;
- using Datory.Annotations;
- using GxPress.Common.Tools;
- namespace GxPress.Entity.WorkProcess
- {
-
-
-
- [DataTable("tede_rule_carbon_copy")]
- public class RuleCarbonCopy : Datory.Entity, IMultipleUser
- {
-
-
-
- [DataColumn]
- public int NodeId { get; set; }
-
-
-
- [DataColumn]
- public int UserId { get; set; }
-
-
-
- [DataColumn]
- public int RoleId { get; set; }
-
-
-
- [DataColumn]
- public int DepartmentId { get; set; }
- }
- }
|