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
package com.java110.acct.bmo.account;
import com.java110.dto.account.AccountDto;
import com.java110.dto.accountDetail.AccountDetailDto;
import com.java110.dto.owner.OwnerDto;
import com.java110.dto.shopVipAccount.ShopVipAccountDto;
import org.springframework.http.ResponseEntity;
 
public interface IGetAccountBMO {
 
 
    /**
     * 查询账户信息
     * add by wuxw
     * @param  accountDto
     * @return
     */
    ResponseEntity<String> get(AccountDto accountDto);
 
 
    /**
     * 查询账户交易明细
     * @param accountDto
     * @return
     */
    ResponseEntity<String> getDetail(AccountDetailDto accountDto);
 
    /**
     * 查询业主账户
     * @param accountDto
     * @param ownerDto
     * @return
     */
    ResponseEntity<String> queryOwnerAccount(AccountDto accountDto, OwnerDto ownerDto);
}