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.

52 lines
1.2 KiB
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[Table("wms_check_stock_area")]
[Serializable]
public class WmsCheckStockArea : BaseEntity
{
[Column("order_no")]
[DisplayName(" ")]
public string OrderNo { get; set; }
[Column("erp_warehouse")]
[DisplayName(" ")]
public string ErpWarehouse { get; set; }
[Column("part_id")]
[DisplayName(" ")]
public int PartId { get; set; }
[Column("part_no")]
[DisplayName(" ")]
public string PartNo { get; set; }
[Column("part_name")]
[DisplayName(" ")]
public string PartName { get; set; }
[Column("qty")]
[DisplayName(" ")]
public decimal Qty { get; set; }
[Column("check_qty")]
[DisplayName(" ")]
public decimal CheckQty { get; set; }
[Column("double_check_qty")]
[DisplayName(" ")]
public decimal DoubleCheckQty { get; set; }
[Column("ruid")]
[DisplayName(" ")]
public int Ruid { get; set; }
}
}