using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SqlSugar;
namespace ZR.Model.MES.wms
{
///
/// 库存盘点单据详情
///
[SugarTable("wms_inventory_check_detail")]
public class WmsInventoryCheckDetail
{
///
///
///
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
public long Id { get; set; }
///
/// 库存盘点单
///
[SugarColumn(ColumnName = "inventory_check_id")]
public long? InventoryCheckId { get; set; }
///
/// 物料
///
[SugarColumn(ColumnName = "item_id")]
public long ItemId { get; set; }
///
/// 库存数量
///
[SugarColumn(ColumnName = "quantity")]
public decimal? Quantity { get; set; }
///
/// 盘点数量
///
[SugarColumn(ColumnName = "check_quantity")]
public decimal? CheckQuantity { get; set; }
///
/// 所属仓库
///
[SugarColumn(ColumnName = "warehouse_id")]
public long? WarehouseId { get; set; }
///
/// 所属库区
///
[SugarColumn(ColumnName = "area_id")]
public long? AreaId { get; set; }
///
/// 货架
///
[SugarColumn(ColumnName = "rack_id")]
public long? RackId { get; set; }
///
/// 删除标识
/// 默认值: 0
///
[SugarColumn(ColumnName = "del_flag")]
public byte DelFlag { get; set; }
///
/// 备注
///
[SugarColumn(ColumnName = "remark")]
public string Remark { get; set; }
///
/// 创建人
///
[SugarColumn(ColumnName = "create_by")]
public long? CreateBy { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "create_time")]
public DateTime? CreateTime { get; set; }
///
/// 修改人
///
[SugarColumn(ColumnName = "update_by")]
public long? UpdateBy { get; set; }
///
/// 修改时间
///
[SugarColumn(ColumnName = "update_time")]
public DateTime? UpdateTime { get; set; }
}
}