更新mybatis模板,将其中的繁体中文改为简体中文

This commit is contained in:
gaohanghang
2019-10-31 17:31:40 +08:00
parent 1bd59d13bc
commit d50cec8bf2
3 changed files with 60 additions and 60 deletions

View File

@@ -51,7 +51,7 @@ public class ${classInfo.className}Controller {
} }
/** /**
* [查] 根據主鍵 id 查 * [查] 根据主键 id 查
* @author ${authorName} * @author ${authorName}
* @date ${.now?string('yyyy/MM/dd')} * @date ${.now?string('yyyy/MM/dd')}
**/ **/
@@ -61,7 +61,7 @@ public class ${classInfo.className}Controller {
} }
/** /**
* [查] 分頁查詢 * [查] 分页查询
* @author ${authorName} * @author ${authorName}
* @date ${.now?string('yyyy/MM/dd')} * @date ${.now?string('yyyy/MM/dd')}
**/ **/

View File

@@ -34,21 +34,21 @@ public interface ${classInfo.className}Mapper {
int update(${classInfo.className} ${classInfo.className?uncap_first}); int update(${classInfo.className} ${classInfo.className?uncap_first});
/** /**
* [查] 根據主鍵 id 查 * [查] 根据主键 id 查
* @author ${authorName} * @author ${authorName}
* @date ${.now?string('yyyy/MM/dd')} * @date ${.now?string('yyyy/MM/dd')}
**/ **/
${classInfo.className} load(int id); ${classInfo.className} load(int id);
/** /**
* [查] 分頁查詢 * [查] 分页查询
* @author ${authorName} * @author ${authorName}
* @date ${.now?string('yyyy/MM/dd')} * @date ${.now?string('yyyy/MM/dd')}
**/ **/
List<${classInfo.className}> pageList(int offset,int pagesize); List<${classInfo.className}> pageList(int offset,int pagesize);
/** /**
* [查] 分頁查詢 count * [查] 分页查询 count
* @author ${authorName} * @author ${authorName}
* @date ${.now?string('yyyy/MM/dd')} * @date ${.now?string('yyyy/MM/dd')}
**/ **/

View File

@@ -23,7 +23,7 @@ public interface ${classInfo.className}Service {
public ReturnT<String> update(${classInfo.className} ${classInfo.className?uncap_first}); public ReturnT<String> update(${classInfo.className} ${classInfo.className?uncap_first});
/** /**
* 根據主鍵 id 查 * 根据主键 id 查
*/ */
public ${classInfo.className} load(int id); public ${classInfo.className} load(int id);