FileRecordDepartmentVO.java 754 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. package com.kcim.vo;
  2. import io.swagger.annotations.ApiOperation;
  3. import lombok.Data;
  4. /**
  5. * @author 李加喜
  6. * @Package com.imed.costaccount.model.vo
  7. * @date 2021-09-01 17:58
  8. */
  9. @Data
  10. @ApiOperation("科室损益记录数据")
  11. public class FileRecordDepartmentVO {
  12. private Long id;
  13. /**
  14. * 年
  15. */
  16. private Integer dateYear;
  17. /**
  18. * 月
  19. */
  20. private Integer dateMonth;
  21. /**
  22. * 文件类型
  23. */
  24. private String fileType;
  25. /**
  26. * 文件名称
  27. */
  28. private String fileName;
  29. /**
  30. * 文件上传路径
  31. */
  32. private String fileUrl;
  33. /**
  34. * 创建时间13位时间戳
  35. */
  36. private Long createTime;
  37. /**
  38. * 更新时间
  39. */
  40. private String updateTime;
  41. }