|
|
|
@ -6,6 +6,7 @@ import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
|
|
|
|
|
|
|
import cn.yixblog.support.mybatis.autosql.annotations.AdvanceSelect;
|
|
|
|
|
import cn.yixblog.support.mybatis.autosql.annotations.AutoMapper;
|
|
|
|
|
import cn.yixblog.support.mybatis.autosql.annotations.AutoSql;
|
|
|
|
|
import cn.yixblog.support.mybatis.autosql.annotations.SqlType;
|
|
|
|
@ -27,6 +28,10 @@ public interface PermissionPartnerModuleMapper {
|
|
|
|
|
@AutoSql(type = SqlType.SELECT)
|
|
|
|
|
List<JSONObject> list();
|
|
|
|
|
|
|
|
|
|
@AutoSql(type = SqlType.SELECT)
|
|
|
|
|
@AdvanceSelect(addonWhereClause = "initialize=1")
|
|
|
|
|
List<JSONObject> listInit();
|
|
|
|
|
|
|
|
|
|
@AutoSql(type = SqlType.SELECT)
|
|
|
|
|
JSONObject find(@Param("module_name") String moduleName);
|
|
|
|
|
|
|
|
|
|