地铁二期项目正式开始

usernotice.cs 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /** 版本信息模板在安装目录下,可自行修改。
  2. * usernotice.cs
  3. *
  4. * 功 能: N/A
  5. * 类 名: usernotice
  6. *
  7. * Ver 变更日期 负责人 变更内容
  8. * ───────────────────────────────────
  9. * V0.01 2022/2/21 10:07:01 N/A 初版
  10. *
  11. * Copyright (c) 2012 Maticsoft Corporation. All rights reserved.
  12. *┌──────────────────────────────────┐
  13. *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
  14. *│ 版权所有:动软卓越(北京)科技有限公司              │
  15. *└──────────────────────────────────┘
  16. */
  17. using System;
  18. namespace YTSoft.BaseCallCenter.Model
  19. {
  20. /// <summary>
  21. /// usernotice:实体类(属性说明自动提取数据库字段的描述信息)
  22. /// </summary>
  23. [Serializable]
  24. public partial class usernotice
  25. {
  26. public usernotice()
  27. {}
  28. #region Model
  29. private int _f_id;
  30. private int? _f_noticeid;
  31. private int? _f_userid;
  32. private int? _f_state;
  33. /// <summary>
  34. ///
  35. /// </summary>
  36. public int F_id
  37. {
  38. set{ _f_id=value;}
  39. get{return _f_id;}
  40. }
  41. /// <summary>
  42. ///
  43. /// </summary>
  44. public int? F_noticeid
  45. {
  46. set{ _f_noticeid=value;}
  47. get{return _f_noticeid;}
  48. }
  49. /// <summary>
  50. ///
  51. /// </summary>
  52. public int? F_userid
  53. {
  54. set{ _f_userid=value;}
  55. get{return _f_userid;}
  56. }
  57. /// <summary>
  58. /// 0是未读 1是已读
  59. /// </summary>
  60. public int? F_state
  61. {
  62. set{ _f_state=value;}
  63. get{return _f_state;}
  64. }
  65. #endregion Model
  66. }
  67. }