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.
65 lines
1.5 KiB
C#
65 lines
1.5 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Table("g_cspart_detail")]
|
|
[Serializable]
|
|
public class GCspartDetail : BaseEntity
|
|
{
|
|
[Column("order_no")]
|
|
[DisplayName(" ")]
|
|
public string OrderNo { get; set; }
|
|
|
|
[Column("carton_type")]
|
|
[DisplayName(" ")]
|
|
public string CartonType { get; set; }
|
|
|
|
[Column("part_no")]
|
|
[DisplayName(" ")]
|
|
public string PartNo { get; set; }
|
|
|
|
[Column("item_part_no")]
|
|
[DisplayName(" ")]
|
|
public string ItemPartNo { get; set; }
|
|
|
|
[Column("carton_no")]
|
|
[DisplayName(" ")]
|
|
public string CartonNo { get; set; }
|
|
|
|
[Column("qty")]
|
|
[DisplayName(" ")]
|
|
public int Qty { get; set; }
|
|
|
|
[Column("ship_qty")]
|
|
[DisplayName(" ")]
|
|
public int ShipQty { get; set; }
|
|
|
|
[Column("lot_no")]
|
|
[DisplayName(" ")]
|
|
public string LotNo { get; set; }
|
|
|
|
[Column("locate_id")]
|
|
[DisplayName(" ")]
|
|
public int LocateId { get; set; }
|
|
|
|
[Column("erp_warehouse")]
|
|
[DisplayName(" ")]
|
|
public string ErpWarehouse { get; set; }
|
|
|
|
[Column("unit")]
|
|
[DisplayName(" ")]
|
|
public string Unit { get; set; }
|
|
|
|
[Column("ruid")]
|
|
[DisplayName(" ")]
|
|
public int Ruid { get; set; }
|
|
|
|
|
|
}
|
|
}
|