DeleFile.cs 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Models
  6. {
  7. public class DeleFile
  8. {
  9. int id;
  10. /// <summary>
  11. /// 主键
  12. /// </summary>
  13. public int Id
  14. {
  15. get { return id; }
  16. set { id = value; }
  17. }
  18. int diid;
  19. /// <summary>
  20. /// 团组
  21. /// </summary>
  22. public int Diid
  23. {
  24. get { return diid; }
  25. set { diid = value; }
  26. }
  27. string category;
  28. /// <summary>
  29. /// 类别标识
  30. /// </summary>
  31. public string Category
  32. {
  33. get { return category; }
  34. set { category = value; }
  35. }
  36. int kind;
  37. /// <summary>
  38. /// 次级类别
  39. /// </summary>
  40. public int Kind
  41. {
  42. get { return kind; }
  43. set { kind = value; }
  44. }
  45. string fileName;
  46. /// <summary>
  47. /// 文件名
  48. /// </summary>
  49. public string FileName
  50. {
  51. get { return fileName; }
  52. set { fileName = value; }
  53. }
  54. string filePath;
  55. /// <summary>
  56. /// 文件路径
  57. /// </summary>
  58. public string FilePath
  59. {
  60. get { return filePath; }
  61. set { filePath = value; }
  62. }
  63. string oper;
  64. /// <summary>
  65. /// 操作员
  66. /// </summary>
  67. public string Oper
  68. {
  69. get { return oper; }
  70. set { oper = value; }
  71. }
  72. string opTime;
  73. /// <summary>
  74. /// 操作时间
  75. /// </summary>
  76. public string OpTime
  77. {
  78. get { return opTime; }
  79. set { opTime = value; }
  80. }
  81. int isDel;
  82. /// <summary>
  83. /// 删除标识
  84. /// </summary>
  85. public int IsDel
  86. {
  87. get { return isDel; }
  88. set { isDel = value; }
  89. }
  90. }
  91. }