zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
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
package com.changhong.epc.parsing.service.util;
 
import com.changhong.epc.bean.count.format.FormInfo;
import com.changhong.epc.bean.parsing.BillInfo;
import com.changhong.epc.bean.parsing.submit.CommitProcessEntity;
 
public interface IBootOthersOperation {
 
    /**
     * 发送计算费用请求
     * @param countParameter
     * @return
     */
    FormInfo countCost(FormInfo countParameter);
 
    /**
     * 提交流程
     * @param billInfo
     * @return
     */
    boolean commitFlow(BillInfo billInfo);
    
    /**
     * 报销单提交流程
     * @return
     */
    boolean commitFlow(CommitProcessEntity commitProcessEntity);
    
}