|
@@ -4,6 +4,8 @@ import org.jeecg.modules.interlockLoginConfig.entity.InterlockLoginConfig;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
|
|
|
+import java.util.List;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* @Description: 联锁登陆页配置表
|
|
* @Description: 联锁登陆页配置表
|
|
* @Author: jeecg-boot
|
|
* @Author: jeecg-boot
|
|
@@ -15,4 +17,7 @@ public interface IInterlockLoginConfigService extends IService<InterlockLoginCon
|
|
//根据id修改状态
|
|
//根据id修改状态
|
|
void updateStatusById(InterlockLoginConfig interlockLoginConfig);
|
|
void updateStatusById(InterlockLoginConfig interlockLoginConfig);
|
|
|
|
|
|
|
|
+ //查询定义的配置信息
|
|
|
|
+ List<InterlockLoginConfig> queryPageList(String status);
|
|
|
|
+
|
|
}
|
|
}
|