分支自 SuZhouGuanHong/TaiYuanTaiZhong

PCS
dengjunjie
2023-12-13 113d1d4262d8f9e78a9d92123713c41669ad6c87
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
/*
 *Author:jxx
 *Contact:283591387@qq.com
 *Date:2018-07-01
 * 此代码由框架生成,请勿随意更改
 */
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;
using WIDESEA_Entity.SystemModels;
 
namespace WIDESEA_Entity.DomainModels
{
    [EntityAttribute(TableCnName = "字典视图")]
    public class vSys_Dictionary:BaseEntity
    {
        /// <summary>
       ///
       /// </summary>
       [Key]
       [Display(Name ="Dic_ID")]
       [Column(TypeName="int")]
       [Required(AllowEmptyStrings=false)]
       public int Dic_ID { get; set; }
 
       /// <summary>
       ///
       /// </summary>
       [Display(Name ="DicValue")]
       [MaxLength(100)]
       [Column(TypeName="nvarchar(100)")]
       public string DicValue { get; set; }
 
       /// <summary>
       ///
       /// </summary>
       [Display(Name ="DicList_ID")]
       [Column(TypeName="int")]
       public int DicList_ID { get; set; }
 
       /// <summary>
       ///
       /// </summary>
       [Display(Name ="DicName")]
       [MaxLength(100)]
       [Column(TypeName="nvarchar(100)")]
       public string DicName { get; set; }
 
       /// <summary>
       ///
       /// </summary>
       [Display(Name ="Enable")]
       [Column(TypeName="tinyint")]
       public byte? Enable { get; set; }
 
       /// <summary>
       ///
       /// </summary>
       [Display(Name ="DicNo")]
       [MaxLength(100)]
       [Column(TypeName="nvarchar(100)")]
       [Required(AllowEmptyStrings=false)]
       public string DicNo { get; set; }
 
       
    }
}