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.

81 lines
1.9 KiB
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[Table("g_allocate_ht_listDetail")]
[Serializable]
public class GAllocateHtListdetail : BaseEntity
{
[Column("ruid")]
[DisplayName(" ")]
public int Ruid { get; set; }
[Column("order_no")]
[DisplayName(" ")]
public string OrderNo { get; set; }
[Column("type_code")]
[DisplayName(" ")]
public string TypeCode { get; set; }
[Column("part_id")]
[DisplayName(" ")]
public int PartId { get; set; }
[Column("carton_no")]
[DisplayName(" ")]
public string CartonNo { get; set; }
[Column("lot_no")]
[DisplayName(" ")]
public string LotNo { get; set; }
[Column("group_no")]
[DisplayName(" ")]
public string GroupNo { get; set; }
[Column("qty")]
[DisplayName(" ")]
public int Qty { get; set; }
[Column("Box_qty")]
[DisplayName(" ")]
public int BoxQty { get; set; }
[Column("factory_id")]
[DisplayName(" ")]
public int FactoryId { get; set; }
[Column("locate_id")]
[DisplayName(" ")]
public int LocateId { get; set; }
[Column("default_box_qty")]
[DisplayName(" ")]
public int DefaultBoxQty { get; set; }
[Column("ship_no")]
[DisplayName(" ")]
public string ShipNo { get; set; }
[Column("car_no")]
[DisplayName(" ")]
public string CarNo { get; set; }
[Column("ref_no")]
[DisplayName(" ")]
public string RefNo { get; set; }
[Column("type")]
[DisplayName(" ")]
public string Type { get; set; }
}
}