You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.1 KiB
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[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; }
}
}