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; } } }