| 1234567891011121314151617181920212223242526272829303132 |
- package com.java110.utils.constant;
- /**
- * @@templateName@@常量类
- * Created by wuxw on 2017/5/20.
- */
- public class ServiceCode@@TemplateCode@@Constant {
- /**
- * 添加 @@templateName@@
- */
- public static final String ADD_@@TEMPLATECODE@@ = "@@templateCode@@.save@@TemplateCode@@";
- /**
- * 修改 @@templateName@@
- */
- public static final String UPDATE_@@TEMPLATECODE@@ = "@@templateCode@@.update@@TemplateCode@@";
- /**
- * 删除 @@templateName@@
- */
- public static final String DELETE_@@TEMPLATECODE@@ = "@@templateCode@@.delete@@TemplateCode@@";
- /**
- * 查询 @@templateName@@
- */
- public static final String LIST_@@TEMPLATECODE@@S = "@@templateCode@@.list@@TemplateCode@@s";
- }
|