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.

108 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_product_deduct")]
[Serializable]
public class WmsProductDeduct : BaseEntity
{
[Column("ruid")]
[DisplayName(" ")]
public long Ruid { get; set; }
[Column("serial_number")]
[DisplayName(" ")]
public string SerialNumber { get; set; }
[Column("part_id")]
[DisplayName(" ")]
public int? PartId { get; set; }
[Column("part_no")]
[DisplayName(" ")]
public string PartNo { get; set; }
[Column("unit")]
[DisplayName(" ")]
public string Unit { get; set; }
[Column("qty")]
[DisplayName(" ")]
public decimal? Qty { get; set; }
[Column("item_part_id")]
[DisplayName(" ")]
public int? ItemPartId { get; set; }
[Column("item_part_no")]
[DisplayName(" ")]
public string ItemPartNo { get; set; }
[Column("item_unit")]
[DisplayName(" ")]
public string ItemUnit { get; set; }
[Column("item_qty")]
[DisplayName(" ")]
public decimal? ItemQty { get; set; }
[Column("handled_item_qty")]
[DisplayName(" ")]
public decimal? HandledItemQty { get; set; }
[Column("pdline_code")]
[DisplayName(" ")]
public string PdlineCode { get; set; }
[Column("bom_id")]
[DisplayName(" ")]
public long? BomId { get; set; }
[Column("is_not_find")]
[DisplayName(" ")]
public int? IsNotFind { get; set; }
#region 扩展字段
[Column("rowsCount")]
[DisplayName(" ")]
public int rowsCount { get; set; }
[Column("src_zone_id")]
[DisplayName(" ")]
public string SrcZoneId { get; set; }
[Column("src_zone_name")]
[DisplayName(" ")]
public string SrcZoneName { get; set; }
[Column("src_locate_id")]
[DisplayName(" ")]
public string SrcLocateId { get; set; }
[Column("src_locate_name")]
[DisplayName(" ")]
public string SrcLocateName { get; set; }
[Column("part_Spec")]
[DisplayName(" ")]
public string PartSpec { get; set; }
[Column("part_Spec2")]
[DisplayName(" ")]
public string PartSpec2 { get; set; }
[Column("item_part_Spec")]
[DisplayName(" ")]
public string ItemPartSpec { get; set; }
[Column("item_part_Spec2")]
[DisplayName(" ")]
public string ItemPartSpec2 { get; set; }
#endregion
}
}