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.
101 lines
2.3 KiB
C#
101 lines
2.3 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Table("MES_IPO_1050")]
|
|
[Serializable]
|
|
public class MesIpo1050 : BaseEntity
|
|
{
|
|
[Column("IPONO")]
|
|
[DisplayName(" ")]
|
|
public string Ipono { get; set; }
|
|
|
|
[Column("IPONUM")]
|
|
[DisplayName(" ")]
|
|
public string Iponum { get; set; }
|
|
|
|
[Column("WERKS")]
|
|
[DisplayName(" ")]
|
|
public string Werks { get; set; }
|
|
|
|
[Column("LGORT")]
|
|
[DisplayName(" ")]
|
|
public string Lgort { get; set; }
|
|
|
|
[Column("MATNR")]
|
|
[DisplayName(" ")]
|
|
public string Matnr { get; set; }
|
|
|
|
[Column("REQQY")]
|
|
[DisplayName(" ")]
|
|
public decimal Reqqy { get; set; }
|
|
|
|
[Column("UNIT")]
|
|
[DisplayName(" ")]
|
|
public string Unit { get; set; }
|
|
|
|
[Column("ZGRT")]
|
|
[DisplayName(" ")]
|
|
public string Zgrt { get; set; }
|
|
|
|
[Column("LIFNR")]
|
|
[DisplayName(" ")]
|
|
public string Lifnr { get; set; }
|
|
|
|
[Column("SID")]
|
|
[DisplayName(" ")]
|
|
public string Sid { get; set; }
|
|
|
|
[Column("RECYMD")]
|
|
[DisplayName(" ")]
|
|
public string Recymd { get; set; }
|
|
|
|
[Column("RECHMS")]
|
|
[DisplayName(" ")]
|
|
public string Rechms { get; set; }
|
|
|
|
[Column("SYNFLG")]
|
|
[DisplayName(" ")]
|
|
public string Synflg { get; set; }
|
|
|
|
[Column("SYNYMD")]
|
|
[DisplayName(" ")]
|
|
public string Synymd { get; set; }
|
|
|
|
[Column("SYNHMS")]
|
|
[DisplayName(" ")]
|
|
public string Synhms { get; set; }
|
|
|
|
[Column("ACTFLG")]
|
|
[DisplayName(" ")]
|
|
public string Actflg { get; set; }
|
|
|
|
[Column("ACTYMD")]
|
|
[DisplayName(" ")]
|
|
public string Actymd { get; set; }
|
|
|
|
[Column("ACTHMS")]
|
|
[DisplayName(" ")]
|
|
public string Acthms { get; set; }
|
|
|
|
[Column("ACTUSR")]
|
|
[DisplayName(" ")]
|
|
public string Actusr { get; set; }
|
|
|
|
[Column("STAFLG")]
|
|
[DisplayName(" ")]
|
|
public string Staflg { get; set; }
|
|
|
|
[Column("SEQ")]
|
|
[DisplayName(" ")]
|
|
public int Seq { get; set; }
|
|
|
|
|
|
}
|
|
}
|