三元财务API

T_Sys_Accessories.cs 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. /// <summary>
  25. /// 附件id
  26. /// </summary>
  27. public int F_FileId
  28. {
  29. set { _f_fileid = value; }
  30. get { return _f_fileid; }
  31. }
  32. /// <summary>
  33. /// 附件名称
  34. /// </summary>
  35. public string F_FileName
  36. {
  37. set { _f_filename = value; }
  38. get { return _f_filename; }
  39. }
  40. /// <summary>
  41. /// 附件类型(后缀名)
  42. /// </summary>
  43. public string F_FileType
  44. {
  45. set { _f_filetype = value; }
  46. get { return _f_filetype; }
  47. }
  48. /// <summary>
  49. /// 上传路径
  50. /// </summary>
  51. public string F_FileUrl
  52. {
  53. set { _f_fileurl = value; }
  54. get { return _f_fileurl; }
  55. }
  56. /// <summary>
  57. /// 添加人工号
  58. /// </summary>
  59. public string F_UserCode
  60. {
  61. set { _f_usercode = value; }
  62. get { return _f_usercode; }
  63. }
  64. /// <summary>
  65. /// 上传时间
  66. /// </summary>
  67. public DateTime? F_AddTime
  68. {
  69. set { _f_addtime = value; }
  70. get { return _f_addtime; }
  71. }
  72. /// <summary>
  73. /// 附件大小
  74. /// </summary>
  75. public long? F_Size
  76. {
  77. set { _f_size = value; }
  78. get { return _f_size; }
  79. }
  80. #endregion Model
  81. }
  82. }