|
|
/*
|
|
|
*代码由框架生成,任何更改都可能导致被代码生成器覆盖
|
|
|
*如果数据库字段发生变化,请在代码生器重新生成此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 VOL.Entity.SystemModels;
|
|
|
|
|
|
namespace VOL.Entity.DomainModels
|
|
|
{
|
|
|
[Entity(TableCnName = "系统参数设置",TableName = "Sys_Param_Set")]
|
|
|
public class Sys_Param_Set:BaseEntity
|
|
|
{
|
|
|
/// <summary>
|
|
|
///GID
|
|
|
/// </summary>
|
|
|
[Key]
|
|
|
[Display(Name ="GID")]
|
|
|
[MaxLength(36)]
|
|
|
[Column(TypeName = "varchar(36)")]
|
|
|
[Required(AllowEmptyStrings=false)]
|
|
|
public string GID { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///参数代码
|
|
|
/// </summary>
|
|
|
[Display(Name ="参数代码")]
|
|
|
[MaxLength(36)]
|
|
|
[Column(TypeName="varchar(36)")]
|
|
|
[Editable(true)]
|
|
|
[Required(AllowEmptyStrings=false)]
|
|
|
public string PARAMNAME { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///参数描述
|
|
|
/// </summary>
|
|
|
[Display(Name ="参数描述")]
|
|
|
[MaxLength(60)]
|
|
|
[Column(TypeName="varchar(60)")]
|
|
|
[Editable(true)]
|
|
|
[Required(AllowEmptyStrings=false)]
|
|
|
public string PARAMDESCRIPTION { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///值
|
|
|
/// </summary>
|
|
|
[Display(Name ="值")]
|
|
|
[MaxLength(360)]
|
|
|
[Column(TypeName="varchar(360)")]
|
|
|
[Editable(true)]
|
|
|
public string PARAMVALUE { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///
|
|
|
/// </summary>
|
|
|
[Display(Name ="MODIFIEDUSER")]
|
|
|
[MaxLength(36)]
|
|
|
[Column(TypeName="varchar(36)")]
|
|
|
[Editable(true)]
|
|
|
public string MODIFIEDUSER { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///
|
|
|
/// </summary>
|
|
|
[Display(Name ="MODIFIEDTIME")]
|
|
|
[Column(TypeName="datetime")]
|
|
|
[Editable(true)]
|
|
|
public DateTime? MODIFIEDTIME { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///
|
|
|
/// </summary>
|
|
|
[Display(Name ="PARAMTYPE")]
|
|
|
[MaxLength(60)]
|
|
|
[Column(TypeName="varchar(60)")]
|
|
|
[Editable(true)]
|
|
|
public string PARAMTYPE { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///
|
|
|
/// </summary>
|
|
|
[Display(Name ="FIELDTYPE")]
|
|
|
[MaxLength(36)]
|
|
|
[Column(TypeName="varchar(36)")]
|
|
|
[Editable(true)]
|
|
|
public string FIELDTYPE { get; set; }
|
|
|
|
|
|
|
|
|
}
|
|
|
} |