You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

97 lines
2.2 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using HcUtility.Core;
using Newtonsoft.Json;
namespace DSWeb.Areas.CommMng.Models
{
[JsonObject]
public class TSysEnumValueDataModel
{
#region Public Properties
private decimal _langid = 0;
/// <summary>
/// LangID
/// </summary>
public decimal LangID
{
get { return _langid; }
set { _langid = value; }
}
private decimal _enumtypeid = 0;
/// <summary>
/// EnumTypeID
/// </summary>
public decimal EnumTypeID
{
get { return _enumtypeid; }
set { _enumtypeid = value; }
}
private string _enumvalueid = "";
/// <summary>
/// EnumValueID
/// </summary>
public string EnumValueID
{
get { return _enumvalueid; }
set { _enumvalueid = value; }
}
private string _enumvaluename = "";
/// <summary>
/// EnumValueName
/// </summary>
public string EnumValueName
{
get { return _enumvaluename; }
set { _enumvaluename = value; }
}
private string _CodeAndName = "";
/// <summary>
/// CodeAndName //需求编号SR2017081100003
/// </summary>
public string CodeAndName
{
get { return _CodeAndName; }
set { _CodeAndName = value; }
}
private string _isdefault = "";
/// <summary>
/// IsDefault
/// </summary>
public string IsDefault
{
get { return _isdefault; }
set { _isdefault = value; }
}
private decimal _dispindex = 0;
/// <summary>
/// DispIndex
/// </summary>
public decimal DispIndex
{
get { return _dispindex; }
set { _dispindex = value; }
}
private string _verno = "";
/// <summary>
/// VerNo
/// </summary>
public string VerNo
{
get { return _verno; }
set { _verno = value; }
}
#endregion
}
}