Admin
2 天以前 1cd9280bbecf557f8978ad3839f14827ff9f4d34
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/*
 *代码由框架生成,任何更改都可能导致被代码生成器覆盖
 *如果数据库字段发生变化,请在代码生器重新生成此Model
 */
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA.Entity.SystemModels;
 
namespace WIDESEA.Entity.DomainModels
{
    [Entity(TableCnName = "历史盘点任务",TableName = "VV_QueryHistoryCheckTask")]
    public class VV_QueryHistoryCheckTask:BaseEntity
    {
        /// <summary>
       ///任务ID
       /// </summary>
       [Key]
       [Display(Name ="任务ID")]
       [Column(TypeName="uniqueidentifier")]
       [Required(AllowEmptyStrings=false)]
       public Guid task_id { get; set; }
 
       /// <summary>
       ///任务状态
       /// </summary>
       [Display(Name ="任务状态")]
       [MaxLength(80)]
       [Column(TypeName="nvarchar(80)")]
       [Required(AllowEmptyStrings=false)]
       public string task_state { get; set; }
 
       /// <summary>
       ///托盘号
       /// </summary>
       [Display(Name ="托盘号")]
       [MaxLength(40)]
       [Column(TypeName="nvarchar(40)")]
       [Required(AllowEmptyStrings=false)]
       public string task_barcode { get; set; }
 
       /// <summary>
       ///出库数量
       /// </summary>
       [Display(Name ="出库数量")]
       [DisplayFormat(DataFormatString="18,2")]
       [Column(TypeName="decimal")]
       [Required(AllowEmptyStrings=false)]
       public decimal task_qty { get; set; }
 
       /// <summary>
       ///批次号(供应商)
       /// </summary>
       [Display(Name ="批次号(供应商)")]
       [MaxLength(100)]
       [Column(TypeName="nvarchar(100)")]
       public string task_lotnumber { get; set; }
 
       /// <summary>
       ///来源货位
       /// </summary>
       [Display(Name ="来源货位")]
       [MaxLength(40)]
       [Column(TypeName="nvarchar(40)")]
       public string task_fromlocationid { get; set; }
 
       /// <summary>
       ///出库地址
       /// </summary>
       [Display(Name ="出库地址")]
       [MaxLength(40)]
       [Column(TypeName="nvarchar(40)")]
       public string task_outhsstation { get; set; }
 
       /// <summary>
       ///出库站台
       /// </summary>
       [Display(Name ="出库站台")]
       [MaxLength(40)]
       [Column(TypeName="nvarchar(40)")]
       public string task_outstation { get; set; }
 
       /// <summary>
       ///调度时间
       /// </summary>
       [Display(Name ="调度时间")]
       [Column(TypeName="datetime")]
       public DateTime? task_dispatchertime { get; set; }
 
       /// <summary>
       ///完成时间
       /// </summary>
       [Display(Name ="完成时间")]
       [Column(TypeName="datetime")]
       [Required(AllowEmptyStrings=false)]
       public DateTime task_finishtime { get; set; }
 
       
    }
}