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
| package com.changhong.epc.constter.parsing.auto;
|
| public interface ParsingUrl {
|
| /**
| * ocr返回的票据信息
| */
| String REST_TENANT_JSON_PUSHORDERBILL_ORIGINAL = "json/pushOrderBill/original";
|
| /**
| * 添加票据规则检查结果
| */
| String BILL_CHENCK_MSG_INSERT = "billInfo/checkMsg/insert";
|
| /**
| * 添加记账状态
| */
| String ORDER_STATUS_INSERT = "orderStatus/insert";
|
| /**
| * 列表数据导入
| */
| String PARSING_IMPORT_EXCEL = "parsing/import/excel";
|
| }
|
|