xiaojiao
2025-12-26 4279cb4384f7f960d87af8b8ad9db73c2dececa3
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
/*
 *代码由框架生成,任何更改都可能导致被代码生成器覆盖
 *如果数据库字段发生变化,请在代码生器重新生成此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 = "Dt_takestock_head")]
    public class Dt_takestock_head : BaseEntity
    {
        /// <summary>
        ///主键ID
        /// </summary>
        [Key]
        [Display(Name = "主键ID")]
        [Column(TypeName = "uniqueidentifier")]
        public Guid stockhead_id { get; set; }
 
        /// <summary>
        ///盘点编号
        /// </summary>
        [Display(Name = "盘点编号")]
        [MaxLength(80)]
        [Column(TypeName = "nvarchar(80)")]
        public string stockhead_number { get; set; }
 
        /// <summary>
        ///当前状态
        /// </summary>
        [Display(Name = "当前状态")]
        [MaxLength(80)]
        [Column(TypeName = "nvarchar(80)")]
        public string stockhead_state { get; set; }
 
        /// <summary>
        ///释放者
        /// </summary>
        [Display(Name = "释放者")]
        [MaxLength(40)]
        [Column(TypeName = "nvarchar(40)")]
        public string stockhead_releaseby { get; set; }
 
        /// <summary>
        ///释放时间
        /// </summary>
        [Display(Name = "释放时间")]
        [Column(TypeName = "datetime")]
        public DateTime? stockhead_releasetime { get; set; }
 
        /// <summary>
        ///执行等级
        /// </summary>
        [Display(Name = "执行等级")]
        [Column(TypeName = "int")]
        public int? stockhead_grade { get; set; }
 
        /// <summary>
        ///创建者
        /// </summary>
        [Display(Name = "创建者")]
        [MaxLength(20)]
        [Column(TypeName = "varchar(20)")]
        public string stockhead_creator { get; set; }
 
        /// <summary>
        ///创建时间
        /// </summary>
        [Display(Name = "创建时间")]
        [Column(TypeName = "datetime")]
        public DateTime stockhead_createtime { get; set; }
 
        /// <summary>
        ///盘点类型
        /// </summary>
        [Display(Name = "盘点类型")]
        [MaxLength(40)]
        [Column(TypeName = "nvarchar(40)")]
        public string stockhead_type { get; set; }
    }
}