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.
60 lines
1.3 KiB
C#
60 lines
1.3 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Table("WMS_JIS")]
|
|
[Serializable]
|
|
public class WmsJis : IfBase
|
|
{
|
|
[Column("ZZ_WMSNUM")]
|
|
[DisplayName(" ")]
|
|
public string ZzWmsnum { get; set; }
|
|
|
|
[Column("WERKS")]
|
|
[DisplayName(" ")]
|
|
public string Werks { get; set; }
|
|
|
|
[Column("LGORT")]
|
|
[DisplayName(" ")]
|
|
public string Lgort { get; set; }
|
|
|
|
[Column("LFDAT")]
|
|
[DisplayName(" ")]
|
|
public string Lfdat { get; set; }
|
|
|
|
[Column("KUNNR")]
|
|
[DisplayName(" ")]
|
|
public string Kunnr { get; set; }
|
|
|
|
[Column("MATNR")]
|
|
[DisplayName(" ")]
|
|
public string Matnr { get; set; }
|
|
|
|
[Column("LFIMG")]
|
|
[DisplayName(" ")]
|
|
public decimal Lfimg { get; set; }
|
|
|
|
[Column("MEINS")]
|
|
[DisplayName(" ")]
|
|
public string Meins { get; set; }
|
|
|
|
[Column("ZPOST")]
|
|
[DisplayName(" ")]
|
|
public string Zpost { get; set; }
|
|
|
|
[Column("ZTIME")]
|
|
[DisplayName(" ")]
|
|
public string Ztime { get; set; }
|
|
|
|
[Column("is_wings")]
|
|
[DisplayName(" ")]
|
|
public string IsWings { get; set; }
|
|
|
|
}
|
|
}
|