1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.java110.acct.bmo.account;
| import com.alibaba.fastjson.JSONObject;
| import com.java110.po.account.AccountDetailPo;
| import org.springframework.http.ResponseEntity;
|
| public interface IOwnerPrestoreAccountBMO {
|
|
| /**
| * 业主预存
| * add by wuxw
| * @param accountDetailPo
| * @return
| */
| ResponseEntity<String> prestore(AccountDetailPo accountDetailPo, JSONObject reqJson);
|
|
| }
|
|