疯狂的狮子Li
2023-02-17 c1036a3df288855348a0e9a085f269b3037d85f7
ruoyi-modules/ruoyi-demo/src/main/java/com/ruoyi/demo/domain/vo/TestDemoVo.java
@@ -69,9 +69,15 @@
    /**
     * 创建人
     */
    @Translation(type = TransConstant.USER_ID_TO_NAME)
    @ExcelProperty(value = "创建人")
    private Long createBy;
    /**
     * 创建人账号
     */
    @Translation(type = TransConstant.USER_ID_TO_NAME, mapper = "createBy")
    @ExcelProperty(value = "创建人账号")
    private String createByName;
    /**
     * 更新时间
@@ -82,9 +88,14 @@
    /**
     * 更新人
     */
    @Translation(type = TransConstant.USER_ID_TO_NAME)
    @ExcelProperty(value = "更新人")
    private Long updateBy;
    /**
     * 更新人账号
     */
    @Translation(type = TransConstant.USER_ID_TO_NAME, mapper = "updateBy")
    @ExcelProperty(value = "更新人账号")
    private String updateByName;
}