TestDemoVo.java 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. package com.ruoyi.demo.domain.vo;
  2. import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
  3. import com.alibaba.excel.annotation.ExcelProperty;
  4. import lombok.Data;
  5. import java.util.Date;
  6. /**
  7. * 测试单表视图对象 test_demo
  8. *
  9. * @author Lion Li
  10. * @date 2021-07-26
  11. */
  12. @Data
  13. @ExcelIgnoreUnannotated
  14. public class TestDemoVo {
  15. private static final long serialVersionUID = 1L;
  16. /**
  17. * 主键
  18. */
  19. @ExcelProperty(value = "主键")
  20. private Long id;
  21. /**
  22. * 部门id
  23. */
  24. @ExcelProperty(value = "部门id")
  25. private Long deptId;
  26. /**
  27. * 用户id
  28. */
  29. @ExcelProperty(value = "用户id")
  30. private Long userId;
  31. /**
  32. * 排序号
  33. */
  34. @ExcelProperty(value = "排序号")
  35. private Integer orderNum;
  36. /**
  37. * key键
  38. */
  39. @ExcelProperty(value = "key键")
  40. private String testKey;
  41. /**
  42. * 值
  43. */
  44. @ExcelProperty(value = "值")
  45. private String value;
  46. /**
  47. * 创建时间
  48. */
  49. @ExcelProperty(value = "创建时间")
  50. private Date createTime;
  51. /**
  52. * 创建人
  53. */
  54. @ExcelProperty(value = "创建人")
  55. private String createBy;
  56. /**
  57. * 更新时间
  58. */
  59. @ExcelProperty(value = "更新时间")
  60. private Date updateTime;
  61. /**
  62. * 更新人
  63. */
  64. @ExcelProperty(value = "更新人")
  65. private String updateBy;
  66. }