1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.changhong.epc.parsing.service.bill;
|
|
| import com.changhong.epc.bean.parsing.BillInfo;
| import com.changhong.epc.bean.tenant.sunCloud.PushOrderBill;
|
| public interface BillInfoService {
|
| /**
| * 添加票据信息
| * @param billInfo
| * @return
| */
| int billInfoInsert(PushOrderBill pushOrderBill);
|
|
| }
|
|