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