TaskDetailEntity.cs 1.38 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.Entities
{
    /// <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 CompanyId { get; set; }
        public string CompanyCode { get; set; }
        public int AllocationId { get; set; }
        public int BillId { get; set; }
        public int BillDetailId { get; set; }
        public string BillCode { get; set; }
        public string MaterialCode { get; set; }
        public string MaterialName { get; set; }
        public int InventoryId { get; set; }
        public string ContainerCode { get; set; }
        public string SourceLocation { get; set; }
        public string DestinationLocation { get; set; }
        public double Qty { get; set; }
        public double Weight { get; set; }
        public int Status { get; set; }
        public DateTime EndTime { get; set; }
        public DateTime LastUpdated { get; set; }
        public string LastUpdatedBy { get; set; }
        public bool Deleted { get; set; }

    }
}