ServiceCodePurchaseApplyConstant.java 793 B

1234567891011121314151617181920212223242526272829303132333435
  1. package com.java110.utils.constant;
  2. /**
  3. * 采购申请常量类
  4. * Created by wuxw on 2017/5/20.
  5. */
  6. public class ServiceCodePurchaseApplyConstant {
  7. /**
  8. * 添加 采购申请
  9. */
  10. public static final String ADD_PURCHASE_APPLY = "purchaseApply.savePurchaseApply";
  11. /**
  12. * 修改 采购申请
  13. */
  14. public static final String UPDATE_PURCHASE_APPLY = "purchaseApply.updatePurchaseApply";
  15. /**
  16. * 删除 采购申请
  17. */
  18. public static final String DELETE_PURCHASE_APPLY = "purchaseApply.deletePurchaseApply";
  19. /**
  20. * 查询 采购申请
  21. */
  22. public static final String LIST_PURCHASE_APPLY = "purchaseApply.listPurchaseApplys";
  23. //审核
  24. public static final String AUDIT_PURCHASE_APPLY = "purchaseApply.auditApplyOrder";
  25. }