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