88e030b7
王彪总
init project
|
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
package com.java110.utils.constant;
/**
* 采购申请常量类
* Created by wuxw on 2017/5/20.
*/
public class ServiceCodePurchaseApplyConstant {
/**
* 添加 采购申请
*/
public static final String ADD_PURCHASE_APPLY = "purchaseApply.savePurchaseApply";
/**
* 修改 采购申请
*/
public static final String UPDATE_PURCHASE_APPLY = "purchaseApply.updatePurchaseApply";
/**
* 删除 采购申请
*/
public static final String DELETE_PURCHASE_APPLY = "purchaseApply.deletePurchaseApply";
/**
* 查询 采购申请
*/
public static final String LIST_PURCHASE_APPLY = "purchaseApply.listPurchaseApplys";
/**
* 查询 流程图
*/
public static final String LIST_WORKFLOW_IMAGE = "purchaseApply.listWorkflowImage";
//审核
public static final String AUDIT_PURCHASE_APPLY = "purchaseApply.auditApplyOrder";
//调拨审核
public static final String AUDIT_ALLOCATION_STORE = "resourceStore.auditAllocationStoreOrder";
}
|