using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("g_sn_reprint")] [Serializable] public class GSnReprint : BaseEntity { [Column("serial_number")] [DisplayName(" ")] public string SerialNumber { get; set; } [Column("qty")] [DisplayName(" ")] public int Qty { get; set; } [Column("reprint_type")] [DisplayName(" ")] public string ReprintType { get; set; } [Column("remark")] [DisplayName(" ")] public string Remark { get; set; } [Column("ruid")] [DisplayName(" ")] public int Ruid { get; set; } } }