1234567891011121314151617181920212223242526272829 |
- using Datory.Annotations;
- namespace GxPress.Entity.Visit
- {
-
-
-
- [DataTable("tede_visit")]
- public class Visit : Datory.Entity
- {
-
-
-
- [DataColumn]
- public int UserId { get; set; }
-
-
-
-
- [DataColumn]
- public int TypeId { get; set; }
-
-
-
-
- [DataColumn]
- public int SourceId { get; set; }
- }
- }
|