1234567891011121314151617181920212223242526272829 |
- using Datory.Annotations;
- namespace GxPress.Entity
- {
-
-
-
- [DataTable("tede_thesaurus")]
- public class Thesaurus : Datory.Entity
- {
-
-
-
- [DataColumn]
- public int ThesaurusType { get; set; }
-
-
-
- [DataColumn]
- public string ThesaurusName { get; set; }
-
-
-
-
- [DataColumn]
- public bool IsDisable { get; set; }
- }
- }
|