TaskDetailEntity.cs 1003 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace HHWCS.Model
{
    public class TaskDetailEntity
    {
        public int Id { get; set; }
        public int TaskId { get; set; }
        public int WarehouseId { get; set; }
        public string WarehouseCode { get; set; }
        public int AllocationId { get; set; }
        public string MaterialCode { get; set; }
        public string ContainerCode { get; set; }
        public string SourceLocation { get; set; }
        public string DestinationLocation { get; set; }
        public double Qty { get; set; }
        public int Status { get; set; }
        public DateTime? Endtime { get; set; }
        public DateTime? LastUpdated { get; set; }
        public string LastUpdateBy { get; set; }
        public bool Deleted { get; set; }
        /// <summary>
        /// 物料名称
        /// </summary>
        public string MaterialName { get; set; }
    }
}