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.
75 lines
1.5 KiB
C#
75 lines
1.5 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Table("wms_rack_package")]
|
|
[Serializable]
|
|
public class WmsRackPackage : BaseEntity
|
|
{
|
|
[Column("ruid")]
|
|
[DisplayName(" ")]
|
|
public int Ruid { get; set; }
|
|
|
|
[Column("rack_no")]
|
|
[DisplayName(" ")]
|
|
public string RackNo { get; set; }
|
|
|
|
[Column("Carton_no")]
|
|
[DisplayName(" ")]
|
|
public string CartonNo { get; set; }
|
|
|
|
[Column("rack_num")]
|
|
[DisplayName(" ")]
|
|
public string RackNum { get; set; }
|
|
|
|
[Column("locate_id")]
|
|
[DisplayName(" ")]
|
|
public string LocateId { get; set; }
|
|
|
|
[Column("locate_name")]
|
|
[DisplayName(" ")]
|
|
public string LocateName { get; set; }
|
|
|
|
[Column("warehouse_id")]
|
|
[DisplayName(" ")]
|
|
public string WarehouseId { get; set; }
|
|
|
|
[Column("warehouse_name")]
|
|
[DisplayName(" ")]
|
|
public string WarehouseName { get; set; }
|
|
|
|
[Column("zone_id")]
|
|
[DisplayName(" ")]
|
|
public string ZoneId { get; set; }
|
|
|
|
[Column("zone_name")]
|
|
[DisplayName(" ")]
|
|
public string ZoneName { get; set; }
|
|
|
|
[Column("status")]
|
|
[DisplayName(" ")]
|
|
public string Status { get; set; }
|
|
|
|
[Column("part_spec")]
|
|
[DisplayName(" ")]
|
|
public string PartSpec { get; set; }
|
|
|
|
[Column("qty")]
|
|
[DisplayName(" ")]
|
|
public int qty { get; set; }
|
|
|
|
[Column("part_no")]
|
|
[DisplayName(" ")]
|
|
public string PartNo { get; set; }
|
|
|
|
[Column("enum_name")]
|
|
[DisplayName(" ")]
|
|
public string EnumName { get; set; }
|
|
}
|
|
}
|