using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("g_order_print")] [Serializable] public class GOrderPrint : BaseEntity { [Column("ruid")] [DisplayName(" ")] public int Ruid { get; set; } [Column("runsheet_no")] [DisplayName(" ")] public string RunsheetNo { get; set; } [Column("runsheet_type")] [DisplayName(" ")] public string RunsheetType { get; set; } [Column("printed")] [DisplayName(" ")] public string Printed { get; set; } [Column("reprint_count")] [DisplayName(" ")] public int? ReprintCount { get; set; } [Column("runsheet_content")] [DisplayName(" ")] public string RunsheetContent { get; set; } [Column("create_time")] [DisplayName(" ")] public DateTime? CreateTime { get; set; } [Column("update_time")] [DisplayName(" ")] public DateTime? UpdateTime { get; set; } [Column("custpd_line")] [DisplayName(" ")] public string CustpdLine { get; set; } [Column("startseq")] [DisplayName(" ")] public string Startseq { get; set; } [Column("endseq")] [DisplayName(" ")] public string Endseq { get; set; } } }