[新增] 权限申请流程
This commit is contained in:
@@ -45,9 +45,9 @@ public interface PowerApplyActDao extends BaseMapper<PowerApplyAct> {
|
||||
|
||||
int batchInsert(@Param("list")List<PowerApplyAct> powerApplyActs);
|
||||
|
||||
List<PowerApplyActPageVO> selectListBydataId(@Param("dataId")String dataId);
|
||||
PowerApplyActPageVO selectListBydataId(@Param("dataId")String dataId);
|
||||
|
||||
List<PowerApplyActPageVO> selectListByPrcId(@Param("prcId")String prcId);
|
||||
PowerApplyActPageVO selectListByPrcId(@Param("prcId")String prcId);
|
||||
|
||||
List<PowerApplyActPageVO> selectListBydataIdNodel(@Param("dataId")String dataId);
|
||||
|
||||
|
||||
@@ -44,4 +44,7 @@ public interface PowerApplyDao extends BaseMapper<PowerApply> {
|
||||
List<PowerApply> queryList(@Param("pageVO") PowerApplyPageVO powerApplyPageVO);
|
||||
|
||||
int saveBatch(@Param("list") List<PowerApplyAct> powerApplies);
|
||||
|
||||
void savePowerAct(@Param("item") PowerApplyAct powerApplyAct);
|
||||
|
||||
}
|
||||
|
||||
@@ -51,6 +51,11 @@
|
||||
(#{item.id}, #{item.dataId}, #{item.reportId}, #{item.power}, #{item.applyReason}, #{item.userId}, #{item.createUserId}, #{item.createDate}, #{item.updateDate}, #{item.updateUserId}, #{item.delFlag})
|
||||
</foreach>
|
||||
</insert>
|
||||
<insert id="savePowerAct">
|
||||
insert into power_apply (id,data_id, report_id, power, apply_reason, user_id, create_user_id, create_date, update_date, update_user_id, del_flag)
|
||||
values
|
||||
(#{item.id}, #{item.dataId}, #{item.reportId}, #{item.power}, #{item.applyReason}, #{item.userId}, #{item.createUserId}, #{item.createDate}, #{item.updateDate}, #{item.updateUserId}, #{item.delFlag})
|
||||
</insert>
|
||||
|
||||
|
||||
<!-- 根据查询VO进行分页查询 -->
|
||||
|
||||
Reference in New Issue
Block a user