TaskDetailEntity.cs
1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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 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; }
}
}