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