1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- using GxPress.EnumConst;
- using Datory.Annotations;
- using System;
- namespace GxPress.Entity
- {
-
-
-
- [DataTable("tede_group_user")]
- public class GroupUser : Datory.Entity
- {
-
-
-
- [DataColumn]
- public int GroupId { get; set; }
-
-
-
- [DataColumn]
- public int UserId { get; set; }
-
-
-
- [DataColumn]
- public GroupUserRoleTyeConst GroupUserRoleId { get; set; }
-
-
-
- [DataColumn]
- public bool IsUDisturb { get; set; }
-
-
-
-
- [DataColumn]
- public DateTime ReadDate { get; set; }
-
-
-
-
- [DataColumn]
- public bool IsContacts { get; set; }
- }
- }
|