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.

85 lines
1.9 KiB
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[Table("g_misco")]
[Serializable]
public class GMisco : BaseEntity
{
[Column("ruid")]
[DisplayName(" ")]
public int Ruid { get; set; }
[Column("order_no")]
[DisplayName(" ")]
public string OrderNo { get; set; }
[Column("zeile")]
[DisplayName(" ")]
public string Zeile { get; set; }
[Column("werks")]
[DisplayName(" ")]
public string Werks { get; set; }
[Column("lgort")]
[DisplayName(" ")]
public string Lgort { get; set; }
[Column("part_no")]
[DisplayName(" ")]
public string PartNo { get; set; }
[Column("qty")]
[DisplayName(" ")]
public int? Qty { get; set; }
[Column("erfme")]
[DisplayName(" ")]
public string Erfme { get; set; }
[Column("sobkz")]
[DisplayName(" ")]
public string Sobkz { get; set; }
[Column("zzlzt")]
[DisplayName(" ")]
public string Zzlzt { get; set; }
[Column("zaction")]
[DisplayName(" ")]
public string Zaction { get; set; }
[Column("piqty")]
[DisplayName(" ")]
public int? Piqty { get; set; }
[Column("trqty")]
[DisplayName(" ")]
public int? Trqty { get; set; }
[Column("synchro_state")]
[DisplayName(" ")]
public int? SynchroState { get; set; }
#region 扩展字段
[NotMapped]
[Column("part_spec")]
[DisplayName(" ")]
public string PartSpec { get; set; }
[NotMapped]
[Column("flag")]
[DisplayName(" ")]
public string Flag { get; set; }
#endregion
}
}