123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using Datory;
- using Datory.Annotations;
- namespace GxPress.Entity
- {
-
-
-
- [DataTable("tede_slide")]
- public class Slide : Datory.Entity
- {
-
-
-
- [DataColumn]
- public string Title { get; set; }
-
-
-
- [DataColumn]
- public string ImageUrl { get; set; }
-
-
-
- [DataColumn]
- public int ArticleId { get; set; }
-
-
-
- [DataColumn]
- public string ArticleTitle { get; set; }
-
-
-
- [DataColumn]
- public int Sort { get; set; }
- }
- }
|