I_Task.cs 1.41 KB
using PropertyChanged;

using SqlSugar;

using System;

namespace HH_WCS_Standard
{
    [ImplementPropertyChanged]
    public class I_Task
    {
        public string tNo { get; set; }
        public string tNo_WMS { get; set; }
        public string preTaskNo { get; set; }
        public string Type { get; set; }

        public int TaskFlow { get; set; }
        public int TaskSetp { get; set; }

        public int NowState { get; set; }

        public int NextState { get; set; }
        public string PalletOrBoxNo { get; set; }
        public int Priority { get; set; }
        public int Roadway { get; set; }
        public int ForkNo { get; set; }
        public string FromPlace { get; set; }
        public string ToPlace { get; set; }
        public string EntrancePlace { get; set; }
        public string ExitPlace { get; set; }
        public string ErrorMsg { get; set; }
        public DateTime Task_CreateTime { get; set; }
        public string Task_CreateWho { get; set; }
        public DateTime? Task_StartTime { get; set; }
        public DateTime? Task_FinishTime { get; set; }
        public int SendAgainFlag { get; set; }
        public int DeleteFlag { get; set; }
        public int EmptyOutFlag { get; set; }
        public int FullInFlag { get; set; }
        public string FullInPlace { get; set; }
        
        public string Height { get; set; }
        public string Weight { get; set; }
    }
}