package com.changhong.epc.parsing.service.account; import com.changhong.epc.bean.admin.Account; import java.util.List; public interface OrderAccountService { /** * 查询需要记账得单据 */ public List getAccount(); /** * 修改记账数据得状态成功:失败 */ public int updateAccountState(Integer id,Integer state,String orderCode); /** * 开始记账 */ public int buchfuhrung(Account account); }