Files
shgx_tz_mes_backend_sync/ZR.Model/MES/wms/WmsInventoryCheck.cs
2024-03-12 17:41:03 +08:00

109 lines
3.4 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SqlSugar;
namespace ZR.Model.MES.wms
{
/// <summary>
/// 库存盘点单据
///</summary>
[SugarTable("wms_inventory_check")]
public class WmsInventoryCheck
{
/// <summary>
///
///</summary>
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
public long Id { get; set; }
/// <summary>
/// 库存盘点单号,系统自动生成
///</summary>
[SugarColumn(ColumnName = "inventory_check_no")]
public string InventoryCheckNo { get; set; }
/// <summary>
/// 库存盘点类型
///</summary>
[SugarColumn(ColumnName = "inventory_check_type")]
public int? InventoryCheckType { get; set; }
/// <summary>
/// 库存盘点单状态11盘点中 22已完成
/// 默认值: 11
///</summary>
[SugarColumn(ColumnName = "inventory_check_status")]
public byte? InventoryCheckStatus { get; set; }
/// <summary>
/// 盈亏数
///</summary>
[SugarColumn(ColumnName = "inventory_check_total")]
public decimal? InventoryCheckTotal { get; set; }
/// <summary>
/// 审核状态
///</summary>
[SugarColumn(ColumnName = "check_status")]
public byte? CheckStatus { get; set; }
/// <summary>
/// 审核人
///</summary>
[SugarColumn(ColumnName = "check_user_id")]
public long? CheckUserId { get; set; }
/// <summary>
/// 审核时间
///</summary>
[SugarColumn(ColumnName = "check_time")]
public DateTime? CheckTime { get; set; }
/// <summary>
/// 所属仓库
///</summary>
[SugarColumn(ColumnName = "warehouse_id")]
public long? WarehouseId { get; set; }
/// <summary>
/// 所属库区
///</summary>
[SugarColumn(ColumnName = "area_id")]
public long? AreaId { get; set; }
/// <summary>
/// 货架
///</summary>
[SugarColumn(ColumnName = "rack_id")]
public long? RackId { get; set; }
/// <summary>
/// 附件文件
///</summary>
[SugarColumn(ColumnName = "attachment")]
public string Attachment { get; set; }
/// <summary>
/// 备注
///</summary>
[SugarColumn(ColumnName = "remark")]
public string Remark { get; set; }
/// <summary>
/// 删除标识
/// 默认值: 0
///</summary>
[SugarColumn(ColumnName = "del_flag")]
public byte DelFlag { get; set; }
/// <summary>
/// 创建人
///</summary>
[SugarColumn(ColumnName = "create_by")]
public long? CreateBy { get; set; }
/// <summary>
/// 创建时间
///</summary>
[SugarColumn(ColumnName = "create_time")]
public DateTime? CreateTime { get; set; }
/// <summary>
/// 修改人
///</summary>
[SugarColumn(ColumnName = "update_by")]
public long? UpdateBy { get; set; }
/// <summary>
/// 修改时间
///</summary>
[SugarColumn(ColumnName = "update_time")]
public DateTime? UpdateTime { get; set; }
}
}