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.constter.admin;
|
| /**
| * 固定资产折旧服务url常量类
| */
| public interface AssetDepreciationUrlConst {
|
| /**
| * 添加
| */
| String ASSET_DEPRECIATION_INSERT = "asset/depreciation/insert";
|
| /**
| * 修改
| */
| String ASSET_DEPRECIATION_UPDATE = "asset/depreciation/update";
|
| /**
| * 查询列表
| */
| String ASSET_DEPRECIATION_SELECT_LIST = "asset/depreciation/select/list";
|
|
| /**
| * 固定资产
| */
| String ASSET_LAST_ACCOUNT = "admin/last/account";
|
| }
|
|