123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using Datory;
- using Datory.Annotations;
- namespace GxPress.Entity
- {
-
-
-
- [DataTable("tede_finance")]
- public class Finance : Datory.Entity
- {
-
-
-
- [DataColumn]
- public int Amount { get; set; }
-
-
-
- [DataColumn]
- public int FinanceType { get; set; }
-
-
-
- [DataColumn]
- public DateTime EnteringDateTime { get; set; }
- }
- }
|