feat(oa): 新增反馈类型字段及查询功能
- 在 OaFeedback 实体类中新增 type 字段- 在 OaFeedbackBo 业务对象中新增 type 查询参数 - 在 OaFeedbackVo 视图对象中新增 type 展示字段 - 更新 OaFeedbackMapper.xml 映射文件以支持 type 字段 - 新增 queryPageIndexList 方法用于分页查询反馈列表 - 新增 /indexList 接口用于前端调用反馈列表查询 - 实现 buildQueryWrapperIndex 构建查询条件的方法 - 添加注释说明反馈类型默认值为 feedback
This commit is contained in:
@@ -8,6 +8,7 @@
|
||||
<result property="feedbackId" column="feedback_id"/>
|
||||
<result property="content" column="content"/>
|
||||
<result property="status" column="status"/>
|
||||
<result property="type" column="type"/>
|
||||
<result property="createTime" column="create_time"/>
|
||||
<result property="createBy" column="create_by"/>
|
||||
<result property="updateTime" column="update_time"/>
|
||||
@@ -47,6 +48,7 @@
|
||||
oaf.create_time,
|
||||
oaf.create_by,
|
||||
oaf.project_id,
|
||||
oaf.type,
|
||||
sop.project_name,
|
||||
sop.project_code,
|
||||
sop.project_num,
|
||||
@@ -63,6 +65,7 @@
|
||||
oaf.status,
|
||||
oaf.title,
|
||||
oaf.project_id,
|
||||
oaf.type,
|
||||
sop.project_name,
|
||||
sop.project_code,
|
||||
sop.project_num,
|
||||
|
||||
Reference in New Issue
Block a user