CostIncomeFile.java 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. package com.imed.costaccount.model;
  2. import com.baomidou.mybatisplus.annotation.TableId;
  3. import com.baomidou.mybatisplus.annotation.TableLogic;
  4. import com.baomidou.mybatisplus.annotation.TableName;
  5. import lombok.AllArgsConstructor;
  6. import lombok.Data;
  7. import lombok.NoArgsConstructor;
  8. import lombok.experimental.Accessors;
  9. import java.io.Serializable;
  10. /**
  11. * 文件上传记录
  12. *
  13. * @author KCYG
  14. * @email KCYG@xinxicom
  15. * @date 2021-08-10 14:42:20
  16. */
  17. @Data
  18. @Accessors(chain = true)
  19. @AllArgsConstructor
  20. @NoArgsConstructor
  21. @TableName("cost_income_file")
  22. public class CostIncomeFile implements Serializable {
  23. private static final long serialVersionUID = 1L;
  24. /**
  25. * 主键 文件编号
  26. */
  27. @TableId
  28. private Long id;
  29. /**
  30. * 文件类型
  31. */
  32. private String fileType;
  33. /**
  34. * 文件名称
  35. */
  36. private String fileName;
  37. /**
  38. * 文件上传路径
  39. */
  40. private String fileUrl;
  41. /**
  42. * 成功导入记录数
  43. */
  44. private Integer successAmount;
  45. /**
  46. * 总记录数
  47. */
  48. private Integer totalAmount;
  49. /**
  50. * 医院Id
  51. */
  52. private Long hospId;
  53. /**
  54. * 用户Id
  55. */
  56. private Long userId;
  57. /**
  58. * 用户名称
  59. */
  60. private String userName;
  61. /**
  62. * 错误详情
  63. */
  64. private String errorList;
  65. /**
  66. * 年份
  67. */
  68. private Integer dateYear;
  69. /**
  70. * 月份
  71. */
  72. private Integer dateMonth;
  73. /**
  74. * 是否撤销
  75. */
  76. private Integer rollbackStatus;
  77. /**
  78. * 创建时间13位时间戳
  79. */
  80. private Long createTime;
  81. /**
  82. * 删除时间,如果存在表示已删除13位时间戳
  83. */
  84. @TableLogic(value = "0",delval = "UNIX_TIMESTAMP(NOW()) * 1000")
  85. private Long deleteTime;
  86. }