liusheng
2023-12-28 ac79f032745c975eb77d6fb148ed390f2373559e
smartor/src/main/java/com/smartor/mapper/IvrLibaTargetAssortMapper.java
@@ -7,16 +7,15 @@
/**
 * 指标分类Mapper接口
 *
 *
 * @author ruoyi
 * @date 2023-12-14
 */
@Mapper
public interface IvrLibaTargetAssortMapper
{
public interface IvrLibaTargetAssortMapper {
    /**
     * 查询指标分类
     *
     *
     * @param id 指标分类主键
     * @return 指标分类
     */
@@ -24,7 +23,7 @@
    /**
     * 查询指标分类列表
     *
     *
     * @param ivrLibaTargetAssort 指标分类
     * @return 指标分类集合
     */
@@ -32,7 +31,7 @@
    /**
     * 新增指标分类
     *
     *
     * @param ivrLibaTargetAssort 指标分类
     * @return 结果
     */
@@ -40,7 +39,7 @@
    /**
     * 修改指标分类
     *
     *
     * @param ivrLibaTargetAssort 指标分类
     * @return 结果
     */
@@ -48,7 +47,7 @@
    /**
     * 删除指标分类
     *
     *
     * @param id 指标分类主键
     * @return 结果
     */
@@ -56,9 +55,16 @@
    /**
     * 批量删除指标分类
     *
     *
     * @param ids 需要删除的数据主键集合
     * @return 结果
     */
    public int deleteIvrLibaTargetAssortByIds(Long[] ids);
    /**
     * 获取序号最大值
     *
     * @return
     */
    public int selectSeqMax();
}