2025-06-06 16:00:39 +08:00

73 lines
1.7 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
*Authorjxx
*Contact283591387@qq.com
*Date2018-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; }
}
}