feat(oa): 添加报告状态字段支持
- 在 OaReportSummary 实体中新增 status 字段表示状态 - 在 OaReportSummary中同步Bo 业务对象添加 status 字段- 更新 MyBatis 映射文件以支持 status 字段的查询 - 在 OaReportSummaryVo 视图对象中添加 status 展示支持 - 状态字段支持导出到 Excel 文件中显示 - 完善相关注释和字段说明文档信息
This commit is contained in:
@@ -17,6 +17,7 @@
|
||||
<result property="delFlag" column="del_flag"/>
|
||||
<result property="remark" column="remark"/>
|
||||
<result property="type" column="type"/>
|
||||
<result property="status" column="status"/>
|
||||
</resultMap>
|
||||
|
||||
<select id="selectVoPageWithProject" resultType="com.ruoyi.oa.domain.vo.OaReportSummaryVo">
|
||||
@@ -27,6 +28,7 @@
|
||||
s.reporter,
|
||||
s.project_id AS projectId,
|
||||
s.remark,
|
||||
s.status,
|
||||
s.type,
|
||||
p.project_name AS projectName,
|
||||
d.latest_create_time AS lastUpdateTime
|
||||
|
||||
Reference in New Issue
Block a user