1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.changhong.epc.parsing.service.account;
|
| import com.changhong.epc.bean.admin.Account;
|
| import java.util.List;
|
| public interface OrderAccountService {
|
| /**
| * 查询需要记账得单据
| */
| public List<Account> getAccount();
|
| /**
| * 修改记账数据得状态成功:失败
| */
| public int updateAccountState(Integer id,Integer state,String orderCode);
|
| /**
| * 开始记账
| */
| public int buchfuhrung(Account account);
| }
|
|