1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using System.Data;
- using System.Text;
- using Datory.Annotations;
- namespace GxPress.Entity.Topic
- {
-
-
-
- [DataTable("tede_topic_group_user")]
- public class TopicGroupUser : Datory.Entity
- {
-
-
-
- [DataColumn]
- public int TopicGroupId { get; set; }
-
-
-
- [DataColumn]
- public int UserId { get; set; }
-
-
-
- [DataColumn]
- public int Sort { get; set; }
- }
- }
|