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")]
public class WmsInventoryCheck
{
///
///
///
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
public long Id { get; set; }
///
/// 库存盘点单号,系统自动生成
///
[SugarColumn(ColumnName = "inventory_check_no")]
public string InventoryCheckNo { get; set; }
///
/// 库存盘点类型
///
[SugarColumn(ColumnName = "inventory_check_type")]
public int? InventoryCheckType { get; set; }
///
/// 库存盘点单状态11:盘点中 22:已完成
/// 默认值: 11
///
[SugarColumn(ColumnName = "inventory_check_status")]
public byte? InventoryCheckStatus { get; set; }
///
/// 盈亏数
///
[SugarColumn(ColumnName = "inventory_check_total")]
public decimal? InventoryCheckTotal { get; set; }
///
/// 审核状态
///
[SugarColumn(ColumnName = "check_status")]
public byte? CheckStatus { get; set; }
///
/// 审核人
///
[SugarColumn(ColumnName = "check_user_id")]
public long? CheckUserId { get; set; }
///
/// 审核时间
///
[SugarColumn(ColumnName = "check_time")]
public DateTime? CheckTime { 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; }
///
/// 附件文件
///
[SugarColumn(ColumnName = "attachment")]
public string Attachment { get; set; }
///
/// 备注
///
[SugarColumn(ColumnName = "remark")]
public string Remark { get; set; }
///
/// 删除标识
/// 默认值: 0
///
[SugarColumn(ColumnName = "del_flag")]
public byte DelFlag { 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; }
}
}