TaskDetailEntity.cs 1.14 KB
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace HHECS.Model
{
    /// <summary>
    /// 任务明细实体,不继承basemodel
    /// </summary>
    [Table("task_detail")]
    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; }
    }
}