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.

112 lines
2.7 KiB
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[Table("wms_check_stock")]
[Serializable]
public class WmsCheckStock : BaseEntity
{
[Column("ruid")]
[DisplayName(" ")]
public int Ruid { get; set; }
[Column("order_no")]
[DisplayName(" ")]
public string OrderNo { get; set; }
[Column("part_no")]
[DisplayName(" ")]
public string PartNo { get; set; }
[Column("erp_warehouse")]
[DisplayName(" ")]
public string ErpWarehouse { get; set; }
[Column("order_type")]
[DisplayName(" ")]
public string OrderType { get; set; }
[Column("order_status")]
[DisplayName(" ")]
public string OrderStatus { get; set; }
[Column("is_obvious")]
[DisplayName(" ")]
public int? IsObvious { get; set; }
#region 扩展字段
[NotMapped]
[Column("order_type_desc")]
[DisplayName(" ")]
public string OrderTypeDesc { get; set; }
[NotMapped]
[Column("qty")]
[DisplayName(" ")]
public decimal Qty { get; set; }
[NotMapped]
[Column("fact_qty")]
[DisplayName(" ")]
public decimal FactQty { get; set; }
[NotMapped]
[Column("zone_id")]
[DisplayName(" ")]
public string ZoneId { get; set; }
[NotMapped]
[Column("zone_name")]
[DisplayName(" ")]
public string ZoneName { get; set; }
[NotMapped]
[Column("locate_id")]
[DisplayName(" ")]
public string LocateId { get; set; }
[NotMapped]
[Column("locate_name")]
[DisplayName(" ")]
public string LocateName { get; set; }
[NotMapped]
[Column("emp_no")]
[DisplayName(" ")]
public string EmpNo { get; set; }
[NotMapped]
[Column("part_spec")]
[DisplayName(" ")]
public string PartSpec { get; set; }
[NotMapped]
[Column("carton_no")]
[DisplayName(" ")]
public string CartonNo { get; set; }
[NotMapped]
[Column("order_status_desc")]
[DisplayName(" ")]
public string OrderStatusDesc { get; set; }
[NotMapped]
[Column("trans_status")]
[DisplayName(" ")]
public int TransStatus { get; set; }
[NotMapped]
[Column("ZEILI")]
[DisplayName("接口盘点行号")]
public string ZEILI { get; set; }
[NotMapped]
[Column("unit")]
[DisplayName("单位")]
public string Unit { get; set; }
#endregion
}
}