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.

114 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_check_stock_fact")]
[Serializable]
public class WmsCheckStockFact : BaseEntity
{
[Column("ruid")]
[DisplayName(" ")]
public int Ruid { get; set; }
[Column("order_no")]
[DisplayName(" ")]
public string OrderNo { get; set; }
[Column("warehouse_id")]
[DisplayName(" ")]
public int? WarehouseId { get; set; }
[Column("warehouse_name")]
[DisplayName(" ")]
public string WarehouseName { get; set; }
[Column("zone_id")]
[DisplayName(" ")]
public int? ZoneId { get; set; }
[Column("zone_name")]
[DisplayName(" ")]
public string ZoneName { get; set; }
[Column("locate_id")]
[DisplayName(" ")]
public int LocateId { get; set; }
[Column("locate_name")]
[DisplayName(" ")]
public string LocateName { get; set; }
[Column("part_id")]
[DisplayName(" ")]
public int? PartId { get; set; }
[Column("part_no")]
[DisplayName(" ")]
public string PartNo { get; set; }
[Column("part_spec")]
[DisplayName(" ")]
public string PartSpec { get; set; }
[Column("carton_no")]
[DisplayName(" ")]
public string CartonNo { get; set; }
[Column("fact_qty")]
[DisplayName(" ")]
public decimal? FactQty { get; set; }
[Column("qty")]
[DisplayName(" ")]
public decimal Qty { get; set; }
[Column("unit")]
[DisplayName(" ")]
public string Unit { get; set; }
[Column("sn_status")]
[DisplayName(" ")]
public string SnStatus { get; set; }
[Column("src_warehouse_id")]
[DisplayName(" ")]
public int? SrcWarehouseId { get; set; }
[Column("src_warehouse_name")]
[DisplayName(" ")]
public string SrcWarehouseName { get; set; }
[Column("src_zone_id")]
[DisplayName(" ")]
public int? SrcZoneId { get; set; }
[Column("src_zone_name")]
[DisplayName(" ")]
public string SrcZoneName { get; set; }
[Column("src_locate_id")]
[DisplayName(" ")]
public int? SrcLocateId { get; set; }
[Column("src_locate_name")]
[DisplayName(" ")]
public string SrcLocateName { get; set; }
[Column("is_scope")]
[DisplayName(" ")]
public int? IsScope { get; set; }
[Column("remark")]
[DisplayName(" ")]
public string Remark { get; set; }
}
}