代码提交
This commit is contained in:
parent
ca836273cb
commit
5cd3b43c75
|
|
@ -163,6 +163,8 @@ public class DaKyProFilesContentsDto {
|
||||||
private String delFlag;
|
private String delFlag;
|
||||||
private String keyWord;
|
private String keyWord;
|
||||||
private String uploadTime;
|
private String uploadTime;
|
||||||
|
private String proName;
|
||||||
|
private String singleProName;
|
||||||
|
|
||||||
private List<DaKyProFilesContentsDto> children = new ArrayList<>();
|
private List<DaKyProFilesContentsDto> children = new ArrayList<>();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -94,10 +94,10 @@ public class TransferApplyServiceImpl implements TransferApplyService {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public AjaxResult audit(TransferApplyDto dto) {
|
public AjaxResult audit(TransferApplyDto dto) {
|
||||||
Integer i = transferApplyMapper.audit(dto);
|
|
||||||
if (i > 0) {
|
|
||||||
dto.setAuditUser(getLoginUser().getUserId().toString());
|
dto.setAuditUser(getLoginUser().getUserId().toString());
|
||||||
dto.setAuditUserName(getLoginUser().getUsername());
|
dto.setAuditUserName(getLoginUser().getUsername());
|
||||||
|
Integer i = transferApplyMapper.audit(dto);
|
||||||
|
if (i > 0) {
|
||||||
transferApplyMapper.addTransferAuditRecord(dto);
|
transferApplyMapper.addTransferAuditRecord(dto);
|
||||||
AjaxResult.success("审核成功");
|
AjaxResult.success("审核成功");
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -267,6 +267,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="auditOpinion != null and auditOpinion != ''">
|
<if test="auditOpinion != null and auditOpinion != ''">
|
||||||
audit_opinion = #{auditOpinion},
|
audit_opinion = #{auditOpinion},
|
||||||
</if>
|
</if>
|
||||||
|
<if test="auditUser != null">
|
||||||
|
audit_user = #{auditUserName},
|
||||||
|
</if>
|
||||||
|
audit_time = now()
|
||||||
</set>
|
</set>
|
||||||
WHERE id = #{id}
|
WHERE id = #{id}
|
||||||
</update>
|
</update>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue