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.

47 lines
1.1 KiB
C#

using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
namespace DSWeb.SoftMng.Model{
//DecModel
public class DecModel
{
/// <summary>
/// GID
/// </summary>
private string _gid;
public string GID
{
get{ return _gid; }
set{ _gid = value; }
}
/// <summary>
/// 标识值
/// </summary>
private string _value;
public string Value
{
get{ return _value; }
set{ _value = value; }
}
/// <summary>
/// 模板
/// </summary>
private string _model;
public string Model
{
get{ return _model; }
set{ _model = value; }
}
/// <summary>
/// 模板类型
/// </summary>
private int? _type;
public int? Type
{
get{ return _type; }
set{ _type = value; }
}
}
}