ServiceCodeConstant.java 748 B

1234567891011121314151617181920212223242526272829303132
  1. package com.java110.utils.constant;
  2. /**
  3. * @@templateName@@常量类
  4. * Created by wuxw on 2017/5/20.
  5. */
  6. public class ServiceCode@@TemplateCode@@Constant {
  7. /**
  8. * 添加 @@templateName@@
  9. */
  10. public static final String ADD_@@TEMPLATECODE@@ = "@@templateCode@@.save@@TemplateCode@@";
  11. /**
  12. * 修改 @@templateName@@
  13. */
  14. public static final String UPDATE_@@TEMPLATECODE@@ = "@@templateCode@@.update@@TemplateCode@@";
  15. /**
  16. * 删除 @@templateName@@
  17. */
  18. public static final String DELETE_@@TEMPLATECODE@@ = "@@templateCode@@.delete@@TemplateCode@@";
  19. /**
  20. * 查询 @@templateName@@
  21. */
  22. public static final String LIST_@@TEMPLATECODE@@S = "@@templateCode@@.list@@TemplateCode@@s";
  23. }