73 lines
1.7 KiB
C#
73 lines
1.7 KiB
C#
/*
|
||
*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 VOL.Entity;
|
||
using VOL.Entity.SystemModels;
|
||
|
||
namespace VOL.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="int")]
|
||
public int? Enable { get; set; }
|
||
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
[Display(Name ="DicNo")]
|
||
[MaxLength(100)]
|
||
[Column(TypeName="nvarchar(100)")]
|
||
[Required(AllowEmptyStrings=false)]
|
||
public string DicNo { get; set; }
|
||
|
||
|
||
}
|
||
}
|