12345678910111213141516171819202122232425262728293031323334353637383940 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using Datory;
- using Datory.Annotations;
- namespace GxPress.Entity
- {
-
-
-
- [DataTable("tede_print")]
- public class Print : Datory.Entity
- {
-
-
-
- [DataColumn]
- public int PublishAmount { get; set; }
-
-
-
- [DataColumn]
- public int VolumeCount { get; set; }
-
-
-
- [DataColumn]
- public int PrintAmount { get; set; }
-
-
-
- [DataColumn]
- public DateTime EnteringDateTime { get; set; }
- }
- }
|