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
2.0 KiB
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[Table("wms_product_deduct_log")]
[Serializable]
public class WmsProductDeductLog : 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("pdline_code")]
[DisplayName(" ")]
public string PdlineCode { get; set; }
[Column("bom_id")]
[DisplayName(" ")]
public long? BomId { get; set; }
#region 扩展字段
[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
}
}