using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace LYFZ.WeixinServiceDate.Model
{
public class Model_FunctionList
{
public Model_FunctionList() {
}
int _ID = 0;
///
///
///
public int ID
{
get { return _ID; }
set { _ID = value; }
}
string _FunctionCode = "";
///
/// 模块代码
///
public string FunctionCode
{
get { return _FunctionCode; }
set { _FunctionCode = value; }
}
string _FunctionName = "";
///
/// 模块名称
///
public string FunctionName
{
get { return _FunctionName; }
set { _FunctionName = value; }
}
DateTime _CreateTime = DateTime.Now;
///
/// 创建时间
///
public DateTime CreateTime
{
get { return _CreateTime; }
set { _CreateTime = value; }
}
}
}