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.
101 lines
2.5 KiB
C#
101 lines
2.5 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Table("sys_pdline")]
|
|
[Serializable]
|
|
public class SysPdline : BaseEntity
|
|
{
|
|
[Column("pdline_id")]
|
|
[DisplayName(" ")]
|
|
public int PdlineId { get; set; }
|
|
|
|
[Column("pdline_code")]
|
|
[DisplayName(" ")]
|
|
public string PdlineCode { get; set; }
|
|
|
|
[Column("pdline_name")]
|
|
[DisplayName(" ")]
|
|
public string PdlineName { get; set; }
|
|
|
|
[Column("pdline_desc")]
|
|
[DisplayName(" ")]
|
|
public string PdlineDesc { get; set; }
|
|
|
|
[Column("dest_warehouse_id")]
|
|
[DisplayName(" ")]
|
|
public int? DestWarehouseId { get; set; }
|
|
|
|
[Column("dest_warehouse_name")]
|
|
[DisplayName(" ")]
|
|
public string DestWarehouseName { get; set; }
|
|
|
|
[Column("dest_zone_id")]
|
|
[DisplayName(" ")]
|
|
public int? DestZoneId { get; set; }
|
|
|
|
[Column("dest_zone_name")]
|
|
[DisplayName(" ")]
|
|
public string DestZoneName { get; set; }
|
|
|
|
[Column("dest_locate_id")]
|
|
[DisplayName(" ")]
|
|
public int? DestLocateId { get; set; }
|
|
|
|
[Column("dest_locate_name")]
|
|
[DisplayName(" ")]
|
|
public string DestLocateName { get; set; }
|
|
|
|
[Column("src_warehouse_id")]
|
|
[DisplayName(" ")]
|
|
public int? SrcWarehouseId { get; set; }
|
|
|
|
[Column("src_warehouse_name")]
|
|
[DisplayName(" ")]
|
|
public string SrcWarehouseName { get; set; }
|
|
|
|
[Column("src_zone_id")]
|
|
[DisplayName(" ")]
|
|
public int? SrcZoneId { get; set; }
|
|
|
|
[Column("src_zone_name")]
|
|
[DisplayName(" ")]
|
|
public string SrcZoneName { get; set; }
|
|
|
|
[Column("src_locate_id")]
|
|
[DisplayName(" ")]
|
|
public int? SrcLocateId { get; set; }
|
|
|
|
[Column("src_locate_name")]
|
|
[DisplayName(" ")]
|
|
public string SrcLocateName { get; set; }
|
|
|
|
[Column("part_prepare")]
|
|
[DisplayName(" ")]
|
|
public int PartPrepare { get; set; }
|
|
|
|
#region 扩展字段
|
|
|
|
[NotMapped]
|
|
[Column("factory_name")]
|
|
[DisplayName(" ")]
|
|
public string FactoryName { get; set; }
|
|
[NotMapped]
|
|
[Column("factory_desc")]
|
|
[DisplayName(" ")]
|
|
public string FactoryDesc { get; set; }
|
|
[NotMapped]
|
|
[Column("Total")]
|
|
[DisplayName(" ")]
|
|
public string Total { get; set; }
|
|
|
|
#endregion
|
|
|
|
}
|
|
}
|