杨张扬
2 天以前 77b654d928c34d32462e212a4ec212f7cc48b50f
models/TN_InventoryM.cs
@@ -1,22 +1,18 @@
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HH.WCS.Mobox3.DoubleCoin.models
{
    /// <summary>
    /// WMS库存管理
    /// </summary>
    [SugarTable("TN_InventoryM")]
    [SugarTable("TN_TN_InventoryM")]
    public class TN_InventoryM : BaseModel
    {
        /// <summary>
        /// 入库时间
        /// </summary>
        public DateTime InAreaTime { get; set; }
        public DateTime INAREATIME { get; set; } = System.DateTime.Now;
        /// <summary>
        /// 容器号
@@ -26,36 +22,46 @@
        /// <summary>
        /// 登录姓名
        /// </summary>
        public string LoginName { get; set; }
        public string LOGINNAME { get; set; }
        /// <summary>
        /// 班次
        /// </summary>
        public string Shift { get; set; }
        public string SHIFT { get; set; }
        /// <summary>
        /// 物料编码
        /// </summary>
        public string ItemCode { get; set; }
        public string ITEMCODE { get; set; }
        /// <summary>
        /// 规格
        /// </summary>
        public string Spec { get; set; }
        public string SPEC { get; set; }
        /// <summary>
        /// 重量
        /// </summary>
        public float Weight { get; set; }
        public float WEIGHT { get; set; }
        /// <summary>
        /// 物料状态
        /// </summary>
        public string ItemState { get; set; }
        public string ITEMSTATE { get; set; }
        /// <summary>
        /// 过期时间
        /// </summary>
        public DateTime Expiration { get; set; }
        public DateTime EXPIRATION { get; set; }
        /// <summary>
        /// 距离过期还有几小时
        /// </summary>
        public string EXPIRATION_DAY { get; set; } = "0";
        /// <summary>
        /// 创建时的起点货位
        /// </summary>
        public string STARTLOC { get; set; }
    }
}