12345678910111213141516171819202122232425262728293031323334 |
- using Datory;
- using Datory.Annotations;
- namespace GxPress.Entity.Topic
- {
-
-
-
- [DataTable("tede_topic_analyze")]
- public class TopicAnalyze:Datory.Entity
- {
-
-
-
- [DataColumn]
- public int TopicId { get; set; }
-
-
-
- [DataColumn]
- public int TopicCommentId { get; set; }
-
-
-
- [DataColumn]
- public int UserId { get; set; }
-
-
-
- [DataColumn]
- public int AnalyzeType { get; set; }
- }
- }
|