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.
129 lines
3.0 KiB
C#
129 lines
3.0 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Table("wms_outstock")]
|
|
[Serializable]
|
|
public class WmsOutstock : BaseEntity
|
|
{
|
|
[Column("ruid")]
|
|
[DisplayName(" ")]
|
|
public int Ruid { get; set; }
|
|
|
|
[Column("order_no")]
|
|
[DisplayName(" ")]
|
|
public string OrderNo { get; set; }
|
|
|
|
[Column("order_type")]
|
|
[DisplayName(" ")]
|
|
public int OrderType { get; set; }
|
|
|
|
[Column("order_status")]
|
|
[DisplayName(" ")]
|
|
public int OrderStatus { get; set; }
|
|
|
|
[Column("ref_order_no")]
|
|
[DisplayName(" ")]
|
|
public string RefOrderNo { get; set; }
|
|
|
|
[Column("vendor_id")]
|
|
[DisplayName(" ")]
|
|
public int VendorId { get; set; }
|
|
|
|
[Column("vendor_code")]
|
|
[DisplayName(" ")]
|
|
public string VendorCode { get; set; }
|
|
|
|
[Column("customer_id")]
|
|
[DisplayName(" ")]
|
|
public int CustomerId { get; set; }
|
|
|
|
[Column("customer_code")]
|
|
[DisplayName(" ")]
|
|
public string CustomerCode { get; set; }
|
|
|
|
[Column("remarks")]
|
|
[DisplayName(" ")]
|
|
public string Remarks { get; set; }
|
|
|
|
[Column("plate_number")]
|
|
[DisplayName(" ")]
|
|
public string PlateNumber { get; set; }
|
|
|
|
#region 扩展字段
|
|
|
|
[NotMapped]
|
|
[Column("order_status_desc")]
|
|
[DisplayName(" ")]
|
|
public string OrderStatusDesc { get; set; }
|
|
|
|
[NotMapped]
|
|
[Column("order_type_desc")]
|
|
[DisplayName(" ")]
|
|
public string OrderTypeDesc { get; set; }
|
|
|
|
[NotMapped]
|
|
[Column("qty")]
|
|
[DisplayName(" ")]
|
|
public string Qty { get; set; }
|
|
|
|
[NotMapped]
|
|
[Column("pick_qty")]
|
|
[DisplayName(" ")]
|
|
public string PickQty { get; set; }
|
|
|
|
[NotMapped]
|
|
[Column("out_qty")]
|
|
[DisplayName(" ")]
|
|
public string OutQty { get; set; }
|
|
|
|
[NotMapped]
|
|
[Column("rec_qty")]
|
|
[DisplayName(" ")]
|
|
public string RecQty { get; set; }
|
|
|
|
[NotMapped]
|
|
[Column("part_no")]
|
|
[DisplayName(" ")]
|
|
public string PartNo { get; set; }
|
|
|
|
[NotMapped]
|
|
[Column("part_spec")]
|
|
[DisplayName(" ")]
|
|
public string PartSpec { get; set; }
|
|
|
|
[NotMapped]
|
|
[Column("emp_no")]
|
|
[DisplayName(" ")]
|
|
public string EmpNo { get; set; }
|
|
|
|
[NotMapped]
|
|
[Column("vendor_name")]
|
|
[DisplayName(" ")]
|
|
public string VendorName { get; set; }
|
|
|
|
[NotMapped]
|
|
[Column("customer_name")]
|
|
[DisplayName(" ")]
|
|
public string CustomerName { get; set; }
|
|
|
|
[NotMapped]
|
|
[Column("part_spec2")]
|
|
[DisplayName(" ")]
|
|
public string PartSpec2 { get; set; }
|
|
|
|
[NotMapped]
|
|
[Column("carton_num")]
|
|
[DisplayName(" ")]
|
|
public int? CartonNum { get; set; }
|
|
|
|
#endregion
|
|
|
|
}
|
|
}
|