1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- 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; }
- }
- }
- }
|