Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Kwan的解忧杂货铺@新空间代码工作室
SpringBoot-kwan
提交
8b7bc713
S
SpringBoot-kwan
项目概览
Kwan的解忧杂货铺@新空间代码工作室
/
SpringBoot-kwan
通知
2
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
S
SpringBoot-kwan
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
8b7bc713
编写于
8月 09, 2023
作者:
Kwan的解忧杂货铺@新空间代码工作室
🐭
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix:添加图片的查询方法
上级
645e3227
变更
10
显示空白变更内容
内联
并排
Showing
10 changed file
with
225 addition
and
6 deletion
+225
-6
src/main/java/com/kwan/springbootkwan/controller/PicInfoController.java
...com/kwan/springbootkwan/controller/PicInfoController.java
+99
-0
src/main/java/com/kwan/springbootkwan/entity/PicInfo.java
src/main/java/com/kwan/springbootkwan/entity/PicInfo.java
+26
-0
src/main/java/com/kwan/springbootkwan/mapper/ChatbotMapper.java
...in/java/com/kwan/springbootkwan/mapper/ChatbotMapper.java
+1
-1
src/main/java/com/kwan/springbootkwan/mapper/PicInfoMapper.java
...in/java/com/kwan/springbootkwan/mapper/PicInfoMapper.java
+16
-0
src/main/java/com/kwan/springbootkwan/mapper/VueChatMapper.java
...in/java/com/kwan/springbootkwan/mapper/VueChatMapper.java
+1
-1
src/main/java/com/kwan/springbootkwan/service/PicInfoService.java
.../java/com/kwan/springbootkwan/service/PicInfoService.java
+15
-0
src/main/java/com/kwan/springbootkwan/service/impl/ChatbotServiceImpl.java
.../kwan/springbootkwan/service/impl/ChatbotServiceImpl.java
+2
-2
src/main/java/com/kwan/springbootkwan/service/impl/PicInfoServiceImpl.java
.../kwan/springbootkwan/service/impl/PicInfoServiceImpl.java
+19
-0
src/main/java/com/kwan/springbootkwan/service/impl/VueChatServiceImpl.java
.../kwan/springbootkwan/service/impl/VueChatServiceImpl.java
+2
-2
src/test/java/com/kwan/springbootkwan/controller/ChatbotControllerTest.java
...kwan/springbootkwan/controller/ChatbotControllerTest.java
+44
-0
未找到文件。
src/main/java/com/kwan/springbootkwan/controller/PicInfoController.java
0 → 100644
浏览文件 @
8b7bc713
package
com.kwan.springbootkwan.controller
;
import
com.baomidou.mybatisplus.core.conditions.query.QueryWrapper
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.kwan.springbootkwan.entity.PicInfo
;
import
com.kwan.springbootkwan.entity.Result
;
import
com.kwan.springbootkwan.service.PicInfoService
;
import
org.springframework.web.bind.annotation.DeleteMapping
;
import
org.springframework.web.bind.annotation.GetMapping
;
import
org.springframework.web.bind.annotation.PathVariable
;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.PutMapping
;
import
org.springframework.web.bind.annotation.RequestBody
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RequestParam
;
import
org.springframework.web.bind.annotation.RestController
;
import
javax.annotation.Resource
;
import
java.io.Serializable
;
import
java.util.List
;
/**
* 图片信息表(PicInfo)表控制层
*
* @author makejava
* @since 2023-08-09 12:44:02
*/
@RestController
@RequestMapping
(
"picInfo"
)
public
class
PicInfoController
{
/**
* 服务对象
*/
@Resource
private
PicInfoService
picInfoService
;
@GetMapping
(
value
=
"/getAll"
)
public
Result
getAll
()
{
return
Result
.
ok
(
this
.
picInfoService
.
list
());
}
/**
* 分页查询所有数据
*
* @param page 分页对象
* @param picInfo 查询实体
* @return 所有数据
*/
@GetMapping
public
Result
selectAll
(
Page
<
PicInfo
>
page
,
PicInfo
picInfo
)
{
return
Result
.
ok
(
this
.
picInfoService
.
page
(
page
,
new
QueryWrapper
<>(
picInfo
)));
}
/**
* 通过主键查询单条数据
*
* @param id 主键
* @return 单条数据
*/
@GetMapping
(
"{id}"
)
public
Result
selectOne
(
@PathVariable
Serializable
id
)
{
return
Result
.
ok
(
this
.
picInfoService
.
getById
(
id
));
}
/**
* 新增数据
*
* @param picInfo 实体对象
* @return 新增结果
*/
@PostMapping
public
Result
insert
(
@RequestBody
PicInfo
picInfo
)
{
return
Result
.
ok
(
this
.
picInfoService
.
save
(
picInfo
));
}
/**
* 修改数据
*
* @param picInfo 实体对象
* @return 修改结果
*/
@PutMapping
public
Result
update
(
@RequestBody
PicInfo
picInfo
)
{
return
Result
.
ok
(
this
.
picInfoService
.
updateById
(
picInfo
));
}
/**
* 删除数据
*
* @param idList 主键结合
* @return 删除结果
*/
@DeleteMapping
public
Result
delete
(
@RequestParam
(
"idList"
)
List
<
Long
>
idList
)
{
return
Result
.
ok
(
this
.
picInfoService
.
removeByIds
(
idList
));
}
}
src/main/java/com/kwan/springbootkwan/entity/PicInfo.java
0 → 100644
浏览文件 @
8b7bc713
package
com.kwan.springbootkwan.entity
;
import
com.baomidou.mybatisplus.extension.activerecord.Model
;
import
lombok.Data
;
import
java.util.Date
;
/**
* 图片信息表(PicInfo)表实体类
*
* @author makejava
* @since 2023-08-09 12:44:03
*/
@Data
@SuppressWarnings
(
"serial"
)
public
class
PicInfo
extends
Model
<
PicInfo
>
{
private
Integer
id
;
//图片名称
private
String
picName
;
//图片地址
private
String
picUrl
;
//图片类型,0:表示宝宝图片
private
Integer
type
;
private
Date
createTime
;
private
Integer
isDelete
;
}
\ No newline at end of file
src/main/java/com/kwan/springbootkwan/mapper/Chatbot
Dao
.java
→
src/main/java/com/kwan/springbootkwan/mapper/Chatbot
Mapper
.java
浏览文件 @
8b7bc713
...
...
@@ -9,7 +9,7 @@ import com.kwan.springbootkwan.entity.Chatbot;
* @author makejava
* @since 2023-07-11 18:02:28
*/
public
interface
Chatbot
Dao
extends
BaseMapper
<
Chatbot
>
{
public
interface
Chatbot
Mapper
extends
BaseMapper
<
Chatbot
>
{
}
src/main/java/com/kwan/springbootkwan/mapper/PicInfoMapper.java
0 → 100644
浏览文件 @
8b7bc713
package
com.kwan.springbootkwan.mapper
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
com.kwan.springbootkwan.entity.PicInfo
;
/**
* 图片信息表(PicInfo)表数据库访问层
*
* @author makejava
* @since 2023-08-09 12:44:02
*/
public
interface
PicInfoMapper
extends
BaseMapper
<
PicInfo
>
{
}
src/main/java/com/kwan/springbootkwan/mapper/VueChat
Dao
.java
→
src/main/java/com/kwan/springbootkwan/mapper/VueChat
Mapper
.java
浏览文件 @
8b7bc713
...
...
@@ -9,7 +9,7 @@ import com.kwan.springbootkwan.entity.VueChat;
* @author makejava
* @since 2023-07-09 15:12:55
*/
public
interface
VueChat
Dao
extends
BaseMapper
<
VueChat
>
{
public
interface
VueChat
Mapper
extends
BaseMapper
<
VueChat
>
{
}
src/main/java/com/kwan/springbootkwan/service/PicInfoService.java
0 → 100644
浏览文件 @
8b7bc713
package
com.kwan.springbootkwan.service
;
import
com.baomidou.mybatisplus.extension.service.IService
;
import
com.kwan.springbootkwan.entity.PicInfo
;
/**
* 图片信息表(PicInfo)表服务接口
*
* @author makejava
* @since 2023-08-09 12:44:03
*/
public
interface
PicInfoService
extends
IService
<
PicInfo
>
{
}
src/main/java/com/kwan/springbootkwan/service/impl/ChatbotServiceImpl.java
浏览文件 @
8b7bc713
package
com.kwan.springbootkwan.service.impl
;
import
com.baomidou.mybatisplus.extension.service.impl.ServiceImpl
;
import
com.kwan.springbootkwan.mapper.Chatbot
Dao
;
import
com.kwan.springbootkwan.mapper.Chatbot
Mapper
;
import
com.kwan.springbootkwan.entity.Chatbot
;
import
com.kwan.springbootkwan.service.ChatbotService
;
import
org.springframework.stereotype.Service
;
...
...
@@ -13,7 +13,7 @@ import org.springframework.stereotype.Service;
* @since 2023-07-11 18:02:31
*/
@Service
public
class
ChatbotServiceImpl
extends
ServiceImpl
<
Chatbot
Dao
,
Chatbot
>
implements
ChatbotService
{
public
class
ChatbotServiceImpl
extends
ServiceImpl
<
Chatbot
Mapper
,
Chatbot
>
implements
ChatbotService
{
}
src/main/java/com/kwan/springbootkwan/service/impl/PicInfoServiceImpl.java
0 → 100644
浏览文件 @
8b7bc713
package
com.kwan.springbootkwan.service.impl
;
import
com.baomidou.mybatisplus.extension.service.impl.ServiceImpl
;
import
com.kwan.springbootkwan.entity.PicInfo
;
import
com.kwan.springbootkwan.mapper.PicInfoMapper
;
import
com.kwan.springbootkwan.service.PicInfoService
;
import
org.springframework.stereotype.Service
;
/**
* 图片信息表(PicInfo)表服务实现类
*
* @author makejava
* @since 2023-08-09 12:44:03
*/
@Service
(
"picInfoService"
)
public
class
PicInfoServiceImpl
extends
ServiceImpl
<
PicInfoMapper
,
PicInfo
>
implements
PicInfoService
{
}
src/main/java/com/kwan/springbootkwan/service/impl/VueChatServiceImpl.java
浏览文件 @
8b7bc713
package
com.kwan.springbootkwan.service.impl
;
import
com.baomidou.mybatisplus.extension.service.impl.ServiceImpl
;
import
com.kwan.springbootkwan.mapper.VueChat
Dao
;
import
com.kwan.springbootkwan.mapper.VueChat
Mapper
;
import
com.kwan.springbootkwan.entity.VueChat
;
import
com.kwan.springbootkwan.service.VueChatService
;
import
org.springframework.stereotype.Service
;
...
...
@@ -13,7 +13,7 @@ import org.springframework.stereotype.Service;
* @since 2023-07-09 15:12:56
*/
@Service
public
class
VueChatServiceImpl
extends
ServiceImpl
<
VueChat
Dao
,
VueChat
>
implements
VueChatService
{
public
class
VueChatServiceImpl
extends
ServiceImpl
<
VueChat
Mapper
,
VueChat
>
implements
VueChatService
{
}
src/test/java/com/kwan/springbootkwan/controller/ChatbotControllerTest.java
0 → 100644
浏览文件 @
8b7bc713
package
com.kwan.springbootkwan.controller
;
import
com.kwan.springbootkwan.SpringBootKwanApplication
;
import
org.junit.jupiter.api.Test
;
import
org.junit.runner.RunWith
;
import
org.springframework.boot.test.context.SpringBootTest
;
import
org.springframework.test.context.ContextConfiguration
;
import
org.springframework.test.context.junit4.SpringRunner
;
@RunWith
(
SpringRunner
.
class
)
@SpringBootTest
@ContextConfiguration
(
classes
=
SpringBootKwanApplication
.
class
)
class
ChatbotControllerTest
{
@Test
void
selectAll
()
{
}
@Test
void
testSelectAll
()
{
}
@Test
void
selectOne
()
{
}
@Test
void
insert
()
{
}
@Test
void
update
()
{
}
@Test
void
delete
()
{
}
@Test
void
testDelete
()
{
}
}
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录