| | |
| | | public List<ArgsEntity> selectByPage(String name, Integer limit, Integer offset); |
| | | |
| | | /** |
| | | * 查询全部数据 |
| | | * 查询所有 |
| | | * |
| | | * @return |
| | | */ |
| | | public List<ArgsEntity> selectArgsAll(); |
| | | public List<ArgsEntity> selectAll(); |
| | | |
| | | /** |
| | | * 查询单条数据 |
| | | * 查询单条 |
| | | * |
| | | * @param id |
| | | * @return |
| | | */ |
| | | public ArgsEntity selectArgs(int id); |
| | | public ArgsEntity selectOne(int id); |
| | | |
| | | /** |
| | | * 添加数据 |
| | | * |
| | | * @param argsEntity |
| | | * @param entity |
| | | * @return |
| | | */ |
| | | public Integer insertArg(ArgsEntity argsEntity); |
| | | public Integer insert(ArgsEntity entity); |
| | | |
| | | /** |
| | | * 批量添加 |
| | |
| | | * @param list |
| | | * @return |
| | | */ |
| | | public Integer insertArgs(List<ArgsEntity> list); |
| | | public Integer inserts(List<ArgsEntity> list); |
| | | |
| | | /** |
| | | * 刪除数据 |
| | |
| | | * @param id |
| | | * @return |
| | | */ |
| | | public Integer deleteArg(int id); |
| | | public Integer delete(int id); |
| | | |
| | | /** |
| | | * 批量删除 |
| | |
| | | * @param ids |
| | | * @return |
| | | */ |
| | | public Integer deleteArgs(List<Integer> ids); |
| | | public Integer deletes(List<Integer> ids); |
| | | |
| | | /** |
| | | * 修改数据 |
| | | * |
| | | * @param argsEntity |
| | | * @param entity |
| | | * @return |
| | | */ |
| | | public Integer updateArg(ArgsEntity argsEntity); |
| | | public Integer update(ArgsEntity entity); |
| | | |
| | | /** |
| | | * 批量修改 |
| | |
| | | * @param list |
| | | * @return |
| | | */ |
| | | public Integer updateArgs(List<ArgsEntity> list); |
| | | public Integer updates(List<ArgsEntity> list); |
| | | } |