修改mapper 包名
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 8m15s
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 8m15s
This commit is contained in:
parent
9b4fafeec2
commit
d8d01b7d38
@ -0,0 +1,15 @@
|
|||||||
|
package org.dromara.sis.config;
|
||||||
|
|
||||||
|
import org.springframework.context.annotation.Bean;
|
||||||
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
import org.springframework.web.client.RestTemplate;
|
||||||
|
|
||||||
|
@Configuration
|
||||||
|
public class RestTemplateConfig {
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
public RestTemplate restTemplate() {
|
||||||
|
// 使用JDK自带的HttpURLConnection作为客户端
|
||||||
|
return new RestTemplate();
|
||||||
|
}
|
||||||
|
}
|
@ -27,8 +27,8 @@ import java.util.Collection;
|
|||||||
* @date 2025-06-24
|
* @date 2025-06-24
|
||||||
*/
|
*/
|
||||||
@Slf4j
|
@Slf4j
|
||||||
@RequiredArgsConstructor
|
|
||||||
@Service
|
@Service
|
||||||
|
@RequiredArgsConstructor
|
||||||
public class TbPersonLibServiceImpl implements ITbPersonLibService {
|
public class TbPersonLibServiceImpl implements ITbPersonLibService {
|
||||||
|
|
||||||
private final TbPersonLibMapper baseMapper;
|
private final TbPersonLibMapper baseMapper;
|
||||||
|
@ -2,6 +2,6 @@
|
|||||||
<!DOCTYPE mapper
|
<!DOCTYPE mapper
|
||||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||||
<mapper namespace="org.dromara.iot.mapper.TbAccessControlMapper">
|
<mapper namespace="org.dromara.sis.mapper.TbAccessControlMapper">
|
||||||
|
|
||||||
</mapper>
|
</mapper>
|
@ -2,6 +2,6 @@
|
|||||||
<!DOCTYPE mapper
|
<!DOCTYPE mapper
|
||||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||||
<mapper namespace="org.dromara.iot.mapper.TdFactoryMapper">
|
<mapper namespace="org.dromara.sis.mapper.TdFactoryMapper">
|
||||||
|
|
||||||
</mapper>
|
</mapper>
|
@ -2,6 +2,6 @@
|
|||||||
<!DOCTYPE mapper
|
<!DOCTYPE mapper
|
||||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||||
<mapper namespace="org.dromara.iot.mapper.TdMeterConfigMapper">
|
<mapper namespace="org.dromara.sis.mapper.TdMeterConfigMapper">
|
||||||
|
|
||||||
</mapper>
|
</mapper>
|
@ -2,6 +2,6 @@
|
|||||||
<!DOCTYPE mapper
|
<!DOCTYPE mapper
|
||||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||||
<mapper namespace="org.dromara.iot.mapper.TdMeterMapper">
|
<mapper namespace="org.dromara.sis.mapper.TdMeterMapper">
|
||||||
|
|
||||||
</mapper>
|
</mapper>
|
@ -2,6 +2,6 @@
|
|||||||
<!DOCTYPE mapper
|
<!DOCTYPE mapper
|
||||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||||
<mapper namespace="org.dromara.iot.mapper.TdMeterRoomMapper">
|
<mapper namespace="org.dromara.sis.mapper.TdMeterRoomMapper">
|
||||||
|
|
||||||
</mapper>
|
</mapper>
|
Loading…
Reference in New Issue
Block a user