11 Star 53 Fork 1

程序源代码/SpringBoot敏捷开发脚手架

Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
Service.java.vm 622 Bytes
Copy Edit Raw Blame History
程序源代码 authored 2019-05-21 16:46 +08:00 . 0.01版本提交
package ${package}.service;
import ${package}.entity.${className}Entity;
import java.util.List;
import java.util.Map;
/**
* ${comments}
*
* @author ${author}
* @email ${email}
* @date ${datetime}
*/
public interface ${className}Service {
${className}Entity queryObject(${pk.attrType} ${pk.attrname});
List<${className}Entity> queryList(Map<String, Object> map);
int queryTotal(Map<String, Object> map);
void save(${className}Entity ${classname});
void update(${className}Entity ${classname});
void delete(${pk.attrType} ${pk.attrname});
void deleteBatch(${pk.attrType}[] ${pk.attrname}s);
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/itcode-itcode/itcode-springboot.git
git@gitee.com:itcode-itcode/itcode-springboot.git
itcode-itcode
itcode-springboot
SpringBoot敏捷开发脚手架
master

Search