代码提交
This commit is contained in:
parent
5c1b334028
commit
4e200fffac
|
|
@ -51,6 +51,7 @@ public class FileTransferReceiveController extends BaseController {
|
||||||
@RequiresPermissions("transfer:Receice:query")
|
@RequiresPermissions("transfer:Receice:query")
|
||||||
public AjaxResult getTransferApply(TransferApplyDto dto) {
|
public AjaxResult getTransferApply(TransferApplyDto dto) {
|
||||||
try {
|
try {
|
||||||
|
dto.setTransferStatus("1");
|
||||||
TransferApplyDto transferApply = transferApplyService.getTransferApply(dto);
|
TransferApplyDto transferApply = transferApplyService.getTransferApply(dto);
|
||||||
return AjaxResult.success(transferApply);
|
return AjaxResult.success(transferApply);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
|
|
|
||||||
|
|
@ -67,7 +67,6 @@ public class TransferApplyServiceImpl implements TransferApplyService {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public TransferApplyDto getTransferApply(TransferApplyDto dto) {
|
public TransferApplyDto getTransferApply(TransferApplyDto dto) {
|
||||||
dto.setTransferStatus("1");
|
|
||||||
TransferApplyDto transferApply = transferApplyMapper.getTransferApply(dto);
|
TransferApplyDto transferApply = transferApplyMapper.getTransferApply(dto);
|
||||||
transferApply.setTransferFileDtos(transferApplyMapper.getTransferFile(dto));
|
transferApply.setTransferFileDtos(transferApplyMapper.getTransferFile(dto));
|
||||||
return transferApply;
|
return transferApply;
|
||||||
|
|
|
||||||
|
|
@ -575,7 +575,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
FROM
|
FROM
|
||||||
da_ky_project
|
da_ky_project
|
||||||
WHERE
|
WHERE
|
||||||
id = #{id}
|
id = #{proId}
|
||||||
</select>
|
</select>
|
||||||
<select id="getTransferApplyFilesByApplyId" resultType="com.bonus.web.domain.DaKyProFilesContentsDto">
|
<select id="getTransferApplyFilesByApplyId" resultType="com.bonus.web.domain.DaKyProFilesContentsDto">
|
||||||
SELECT distinct
|
SELECT distinct
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue