Model_FunctionList.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace LYFZ.WeixinServiceDate.Model
  6. {
  7. public class Model_FunctionList
  8. {
  9. public Model_FunctionList() {
  10. }
  11. int _ID = 0;
  12. /// <summary>
  13. ///
  14. /// </summary>
  15. public int ID
  16. {
  17. get { return _ID; }
  18. set { _ID = value; }
  19. }
  20. string _FunctionCode = "";
  21. /// <summary>
  22. /// 模块代码
  23. /// </summary>
  24. public string FunctionCode
  25. {
  26. get { return _FunctionCode; }
  27. set { _FunctionCode = value; }
  28. }
  29. string _FunctionName = "";
  30. /// <summary>
  31. /// 模块名称
  32. /// </summary>
  33. public string FunctionName
  34. {
  35. get { return _FunctionName; }
  36. set { _FunctionName = value; }
  37. }
  38. DateTime _CreateTime = DateTime.Now;
  39. /// <summary>
  40. /// 创建时间
  41. /// </summary>
  42. public DateTime CreateTime
  43. {
  44. get { return _CreateTime; }
  45. set { _CreateTime = value; }
  46. }
  47. }
  48. }