123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- using System;
- using System.Collections.Generic;
- using System.Data;
- using System.Text;
- using Datory.Annotations;
- namespace GxPress.Entity
- {
-
-
-
- [DataTable("tede_collection")]
- public class Collection : Datory.Entity
- {
-
-
-
- [DataColumn]
- public int UserId { get; set; }
-
-
-
- [DataColumn]
- public int CollectionType { get; set; }
-
-
-
- [DataColumn]
- public int CollectionDataId { get; set; }
-
-
-
- [DataColumn]
- public string Title { get; set; }
-
-
-
- [DataColumn]
- public int EndCollectionType { get; set; }
-
-
-
- [DataColumn]
- public int EndCollectionDataId { get; set; }
-
-
-
- [DataColumn]
- public int ReadCount { get; set; }
-
-
-
- [DataColumn]
- public int SourceUserId { get; set; }
-
-
-
-
- [DataColumn]
- public bool IsTop { get; set; }
- }
- }
|