[修改] 报告上传部分接口调试

This commit is contained in:
bupengxiang
2023-05-06 09:30:46 +08:00
parent 0de7012353
commit 91c14e0489
8 changed files with 32 additions and 13 deletions
@@ -122,7 +122,7 @@ public class PowerApplyController {
}
/**
* @param deleteParamRequestVO
* @param powerApplyActPageVO
* @return com.adc.da.util.http.ResponseMessage
* @author bu
* @date 2023-04-23
@@ -47,6 +47,8 @@ public interface PowerApplyActDao extends BaseMapper<PowerApplyAct> {
List<PowerApplyActPageVO> selectListBydataId(@Param("dataId")String dataId);
List<PowerApplyActPageVO> selectListByPrcId(@Param("prcId")String prcId);
List<PowerApplyActPageVO> selectListBydataIdNodel(@Param("dataId")String dataId);
List<PowerApplyAct> selectActListBydataId(@Param("dataId")String dataId);
@@ -1,6 +1,8 @@
package com.adc.da.report.eo;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
@@ -18,7 +20,7 @@ import java.util.List;
public class TtReportManageAct {
@TableField(exist = false)
@TableId(value = "id",type = IdType.UUID)
private String id;
/**
* 任务id
@@ -90,16 +92,19 @@ public class TtReportManageAct {
/**
*
*/
@TableField("createUserId")
private String createUserId;
/**
*
*/
@TableField("createDate")
private Date createDate;
/**
*
*/
@TableField("updateDate")
private Date updateDate = new Date();
/**
@@ -109,14 +114,10 @@ public class TtReportManageAct {
private Integer delFlag;
/**
* 创建人id
*/
@TableField("update_user_id")
private String updateUserId;
/**
* 权限设置
*/
@TableField(exist = false)
private List<PowerApplyAct> powerList;
}
@@ -118,4 +118,9 @@
from <include refid="TableName"/> a
where a.data_id = #{dataId} and a.del_flag = 0
</select>
<select id="selectListByPrcId" resultType="com.adc.da.report.vo.PowerApplyActPageVO">
select a.*
from <include refid="TableName"/> a
where a.prc_id = #{prcId} and a.del_flag = 0
</select>
</mapper>