com.base4j.mvc.sys.mapper.SysDictItemMapper Maven / Gradle / Ivy
package com.base4j.mvc.sys.mapper;
import com.base4j.mvc.sys.entity.SysDictItem;
import com.base4j.mybatis.base.mapper.BaseMapper;
import com.base4j.mybatis.config.mybatis.annotations.AutoMapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@AutoMapper
public interface SysDictItemMapper extends BaseMapper {
List insert(@Param("sysDictId") Long sysDictId);
}