123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using Datory;
- 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; }
- }
- }
|