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#
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("MES_WMS_REWORK_PART")]
|
|
[Serializable]
|
|
public class MesWmsReworkPart : BaseEntity
|
|
{
|
|
[Column("pdline_code")]
|
|
[DisplayName(" ")]
|
|
public string PdlineCode { get; set; }
|
|
|
|
[Column("part_no")]
|
|
[DisplayName(" ")]
|
|
public string PartNo { get; set; }
|
|
|
|
[Column("serial_number")]
|
|
[DisplayName(" ")]
|
|
public string SerialNumber { get; set; }
|
|
|
|
[Column("item_part_no")]
|
|
[DisplayName(" ")]
|
|
public string ItemPartNo { get; set; }
|
|
|
|
[Column("item_qty")]
|
|
[DisplayName(" ")]
|
|
public decimal? ItemQty { get; set; }
|
|
|
|
[Column("syn_flg")]
|
|
[DisplayName(" ")]
|
|
public int SynFlg { get; set; }
|
|
|
|
[Column("syn_time")]
|
|
[DisplayName(" ")]
|
|
public string SynTime { get; set; }
|
|
|
|
[Column("err_msg")]
|
|
[DisplayName(" ")]
|
|
public string ErrMsg { get; set; }
|
|
|
|
|
|
}
|
|
}
|