1234567891011121314151617181920212223242526272829 |
- using System;
- using Datory.Annotations;
- namespace GxPress.Entity
- {
-
-
-
- [DataTable("tede_sell")]
- public class Sell : Datory.Entity
- {
-
-
-
- [DataColumn]
- public int SellAmount { get; set; }
-
-
-
- [DataColumn]
- public int SellVolumeCount { get; set; }
-
-
-
- [DataColumn]
- public DateTime EnteringDateTime { get; set; }
- }
- }
|