| | |
| | | |
| | | /** |
| | | * 参数设置 |
| | | * @author sws |
| | | * @date 2022-09-27 |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | |
| | | * 分页查询 |
| | | * |
| | | * @param name 名称 |
| | | * @param limit 记录表 |
| | | * @param limit 记录数 |
| | | * @param offset 偏移量 |
| | | * @return 列表 |
| | | */ |
| | | public List<ArgsEntity> selectByPage(String name, Integer limit, Integer offset); |
| | | |
| | | /** |
| | | * 查询全部数据 |
| | | * 查询所有 |
| | | * |
| | | * @return |
| | | */ |
| | | public List<ArgsEntity> selectArgsAll(); |
| | | public List<ArgsEntity> selectAll(); |
| | | |
| | | /** |
| | | * 查询单条数据 |
| | | * 根据ID查询 |
| | | * |
| | | * @param id |
| | | * @return |
| | | */ |
| | | public ArgsEntity selectArgs(int id); |
| | | public ArgsEntity selectById(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 entity |
| | | * @return |
| | | */ |
| | | public Integer updateForValue(ArgsEntity entity); |
| | | |
| | | /** |
| | | * 更新多条 |
| | | * |
| | | * @param list |
| | | * @return |
| | | */ |
| | | public Integer updateArgs(List<ArgsEntity> list); |
| | | public Integer updates(List<ArgsEntity> list); |
| | | } |