feat(oa): 问题反馈页面增加创建时间和创建者字段

- 在 OaFeedbackMapper.xml 中添加 create_time 和 create_by 字段的查询
- 在 OaFeedbackVo.java 中添加 createTime 和 createBy属性
- 使用 @JsonFormat 注解格式化创建时间
-让 OaFeedbackVo 继承 BaseEntity 以复用基础实体类的功能
This commit is contained in:
JR
2025-08-19 09:38:18 +08:00
parent 76fd5446a5
commit db717d25ac
2 changed files with 15 additions and 5 deletions

View File

@@ -44,6 +44,8 @@
oaf.content,
oaf.status,
oaf.title,
oaf.create_time,
oaf.create_by,
oaf.project_id,
sop.project_name,
sop.project_code,