using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HH.WCS.Mobox3.DoubleCoin.models
{
///
/// WMS库存管理
///
[SugarTable("TN_InventoryM")]
public class TN_InventoryM : BaseModel
{
///
/// 入库时间
///
public DateTime InAreaTime { get; set; }
///
/// 容器号
///
public string RFID { get; set; }
///
/// 登录姓名
///
public string LoginName { get; set; }
///
/// 班次
///
public string Shift { get; set; }
///
/// 物料编码
///
public string ItemCode { get; set; }
///
/// 规格
///
public string Spec { get; set; }
///
/// 重量
///
public float Weight { get; set; }
///
/// 物料状态
///
public string ItemState { get; set; }
///
/// 过期时间
///
public DateTime Expiration { get; set; }
}
}