using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("sys_part_replace")] [Serializable] public class SysPartReplace : BaseEntity { [Column("part_id")] [DisplayName(" ")] public int PartId { get; set; } [Column("item_part_id")] [DisplayName(" ")] public int ItemPartId { get; set; } [Column("replace_part_id")] [DisplayName(" ")] public int ReplacePartId { get; set; } [Column("replace_qty")] [DisplayName(" ")] public decimal ReplaceQty { get; set; } [Column("version")] [DisplayName(" ")] public string Version { get; set; } [Column("start_ymd")] [DisplayName(" ")] public string StartYmd { get; set; } [Column("end_ymd")] [DisplayName(" ")] public string EndYmd { get; set; } [Column("ruid")] [DisplayName(" ")] public int Ruid { get; set; } } }