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.
113 lines
2.6 KiB
C#
113 lines
2.6 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Table("WMS_IB_JITS")]
|
|
[Serializable]
|
|
public class WmsIbJits : BaseEntity
|
|
{
|
|
[Column("ZGRT")]
|
|
[DisplayName(" ")]
|
|
public string Zgrt { get; set; }
|
|
|
|
[Column("ZDOT")]
|
|
[DisplayName(" ")]
|
|
public string Zdot { get; set; }
|
|
|
|
[Column("REVNO")]
|
|
[DisplayName(" ")]
|
|
public string Revno { get; set; }
|
|
|
|
[Column("ZASNNO")]
|
|
[DisplayName(" ")]
|
|
public string Zasnno { get; set; }
|
|
|
|
[Column("ZRNUM")]
|
|
[DisplayName(" ")]
|
|
public string Zrnum { get; set; }
|
|
|
|
[Column("LGORT")]
|
|
[DisplayName(" ")]
|
|
public string Lgort { get; set; }
|
|
|
|
[Column("ZDEV_NUM")]
|
|
[DisplayName(" ")]
|
|
public decimal Zdev_Num { get; set; }
|
|
|
|
[Column("UNIT")]
|
|
[DisplayName(" ")]
|
|
public string Unit { get; set; }
|
|
|
|
[Column("ZSTAT")]
|
|
[DisplayName(" ")]
|
|
public string Zstat { get; set; }
|
|
|
|
[Column("ZPOST")]
|
|
[DisplayName(" ")]
|
|
public string Zpost { get; set; }
|
|
|
|
[Column("ZTIME")]
|
|
[DisplayName(" ")]
|
|
public string Ztime { 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("SID")]
|
|
[DisplayName(" ")]
|
|
public string Sid { get; set; }
|
|
|
|
[Column("RECTIM")]
|
|
[DisplayName(" ")]
|
|
public string Rectim { get; set; }
|
|
|
|
[Column("SYNFLG")]
|
|
[DisplayName(" ")]
|
|
public string Synflg { get; set; }
|
|
|
|
[Column("ERRMSG")]
|
|
[DisplayName(" ")]
|
|
public string ErrMsg { get; set; }
|
|
|
|
[Column("SYNTIM")]
|
|
[DisplayName(" ")]
|
|
public string Syntim { get; set; }
|
|
|
|
[Column("ACTFLG")]
|
|
[DisplayName(" ")]
|
|
public string Actflg { get; set; }
|
|
|
|
[Column("ACTTIM")]
|
|
[DisplayName(" ")]
|
|
public string Acttim { 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; }
|
|
|
|
|
|
}
|
|
}
|