123456789101112131415161718192021222324252627282930 |
- using System.Data;
- using Datory.Annotations;
- namespace GxPress.Entity
- {
-
-
-
- [DataTable("tede_app_report")]
- public class AppReport : Datory.Entity
- {
-
-
-
- [DataColumn]
- public string Title { get; set; }
-
-
-
- [DataColumn]
- public int ReportType { get; set; }
-
-
-
- [DataColumn]
- public string IocUrl { get; set; }
- }
- }
|