12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace LYFZ.WeixinServiceDate.Model
- {
- public class Model_KeywordManagement
- {
- public Model_KeywordManagement() {
-
- }
- int _ID = 0;
-
-
-
- public int ID
- {
- get { return _ID; }
- set { _ID = value; }
- }
- string _Keyword = "";
-
-
-
- public string Keyword
- {
- get { return _Keyword; }
- set { _Keyword = value; }
- }
-
-
-
- string _FunctionCode = "";
-
-
-
- public string FunctionCode
- {
- get { return _FunctionCode; }
- set { _FunctionCode = value; }
- }
- DateTime _CreateTime=DateTime.Now;
-
-
-
- public DateTime CreateTime
- {
- get { return _CreateTime; }
- set { _CreateTime = value; }
- }
-
- int _isEnabled = 1;
-
-
-
- public int IsEnabled
- {
- get { return _isEnabled; }
- set { _isEnabled = value; }
- }
- }
- }
|