wuxw
2022-07-19 05683f2b2bdbdbe21cf17ad523c21ab338bd1c54
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package com.java110.acct.bmo.accountWithdrawalApply.impl;
 
import com.java110.acct.bmo.accountWithdrawalApply.IGetAccountWithdrawalApplyBMO;
import com.java110.intf.acct.IAccountWithdrawalApplyInnerServiceSMO;
import com.java110.vo.ResultVo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Service;
import com.java110.dto.accountWithdrawalApply.AccountWithdrawalApplyDto;
 
import java.util.ArrayList;
import java.util.List;
 
@Service("getAccountWithdrawalApplyBMOImpl")
public class GetAccountWithdrawalApplyBMOImpl implements IGetAccountWithdrawalApplyBMO {
 
    @Autowired
    private IAccountWithdrawalApplyInnerServiceSMO accountWithdrawalApplyInnerServiceSMOImpl;
 
    /**
     *
     *
     * @param  accountWithdrawalApplyDto
     * @return 订单服务能够接受的报文
     */
    public ResponseEntity<String> get(AccountWithdrawalApplyDto accountWithdrawalApplyDto) {
 
 
        int count = accountWithdrawalApplyInnerServiceSMOImpl.queryAccountWithdrawalApplysCount(accountWithdrawalApplyDto);
 
        List<AccountWithdrawalApplyDto> accountWithdrawalApplyDtos = null;
        if (count > 0) {
            accountWithdrawalApplyDtos = accountWithdrawalApplyInnerServiceSMOImpl.queryAccountWithdrawalApplys(accountWithdrawalApplyDto);
        } else {
            accountWithdrawalApplyDtos = new ArrayList<>();
        }
 
        ResultVo resultVo = new ResultVo((int) Math.ceil((double) count / (double) accountWithdrawalApplyDto.getRow()), count, accountWithdrawalApplyDtos);
 
        ResponseEntity<String> responseEntity = new ResponseEntity<String>(resultVo.toString(), HttpStatus.OK);
 
        return responseEntity;
    }
 
    @Override
    public ResponseEntity<String> listStateWithdrawalApplys(String[] states, int page, int row) {
        int count = accountWithdrawalApplyInnerServiceSMOImpl.listStateWithdrawalApplysCount( states);
 
        List<AccountWithdrawalApplyDto> accountWithdrawalApplyDtos = null;
        if (count > 0) {
            accountWithdrawalApplyDtos = accountWithdrawalApplyInnerServiceSMOImpl.listStateWithdrawalApplys(states);
        } else {
            accountWithdrawalApplyDtos = new ArrayList<>();
        }
 
        ResultVo resultVo = new ResultVo((int) Math.ceil((double) count / (double) page), count, accountWithdrawalApplyDtos);
 
        ResponseEntity<String> responseEntity = new ResponseEntity<String>(resultVo.toString(), HttpStatus.OK);
 
        return responseEntity;
    }
 
}