Нет описания

T_Sys_Accessories.cs 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace CallCenterApi.Model
  7. {
  8. /// <summary>
  9. /// 附件表
  10. /// </summary>
  11. [Serializable]
  12. public partial class T_Sys_Accessories
  13. {
  14. public T_Sys_Accessories()
  15. { }
  16. #region Model
  17. private int _f_fileid;
  18. private string _f_filename;
  19. private string _f_filetype;
  20. private string _f_fileurl;
  21. private string _f_usercode;
  22. private DateTime? _f_addtime;
  23. private long? _f_size;
  24. private string _f_oriname;
  25. /// <summary>
  26. /// 附件id
  27. /// </summary>
  28. public int F_FileId
  29. {
  30. set { _f_fileid = value; }
  31. get { return _f_fileid; }
  32. }
  33. /// <summary>
  34. /// 附件名称
  35. /// </summary>
  36. public string F_FileName
  37. {
  38. set { _f_filename = value; }
  39. get { return _f_filename; }
  40. }
  41. /// <summary>
  42. /// 附件类型(后缀名)
  43. /// </summary>
  44. public string F_FileType
  45. {
  46. set { _f_filetype = value; }
  47. get { return _f_filetype; }
  48. }
  49. /// <summary>
  50. /// 上传路径
  51. /// </summary>
  52. public string F_FileUrl
  53. {
  54. set { _f_fileurl = value; }
  55. get { return _f_fileurl; }
  56. }
  57. /// <summary>
  58. /// 添加人工号
  59. /// </summary>
  60. public string F_UserCode
  61. {
  62. set { _f_usercode = value; }
  63. get { return _f_usercode; }
  64. }
  65. /// <summary>
  66. /// 上传时间
  67. /// </summary>
  68. public DateTime? F_AddTime
  69. {
  70. set { _f_addtime = value; }
  71. get { return _f_addtime; }
  72. }
  73. /// <summary>
  74. /// 附件大小
  75. /// </summary>
  76. public long? F_Size
  77. {
  78. set { _f_size = value; }
  79. get { return _f_size; }
  80. }
  81. /// <summary>
  82. /// 文件原名
  83. /// </summary>
  84. public string F_OriName
  85. {
  86. get
  87. {
  88. return _f_oriname;
  89. }
  90. set
  91. {
  92. _f_oriname = value;
  93. }
  94. }
  95. #endregion Model
  96. }
  97. }