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.
65 lines
1.4 KiB
C#
65 lines
1.4 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Table("WMS_INQC")]
|
|
[Serializable]
|
|
public class WmsInqc : IfBase
|
|
{
|
|
[Column("BSTYP")]
|
|
[DisplayName(" ")]
|
|
public string Bstyp { get; set; }
|
|
|
|
[Column("EVRTN")]
|
|
[DisplayName(" ")]
|
|
public string Evrtn { get; set; }
|
|
|
|
[Column("ETENR")]
|
|
[DisplayName(" ")]
|
|
public string Etenr { get; set; }
|
|
|
|
[Column("WERKS")]
|
|
[DisplayName(" ")]
|
|
public string Werks { get; set; }
|
|
|
|
[Column("MATNR")]
|
|
[DisplayName(" ")]
|
|
public string Matnr { get; set; }
|
|
|
|
[Column("LIFNR")]
|
|
[DisplayName(" ")]
|
|
public string Lifnr { get; set; }
|
|
|
|
[Column("ZDEV")]
|
|
[DisplayName(" ")]
|
|
public decimal Zdev { get; set; }
|
|
|
|
[Column("LGORT")]
|
|
[DisplayName(" ")]
|
|
public string Lgort { get; set; }
|
|
|
|
[Column("UNIT")]
|
|
[DisplayName(" ")]
|
|
public string Unit { get; set; }
|
|
|
|
[Column("ZPOST")]
|
|
[DisplayName(" ")]
|
|
public string Zpost { get; set; }
|
|
|
|
[Column("ZTIME")]
|
|
[DisplayName(" ")]
|
|
public string Ztime { get; set; }
|
|
|
|
[Column("PROVE")]
|
|
[DisplayName(" ")]
|
|
public string Prove { get; set; }
|
|
|
|
|
|
}
|
|
}
|