三天撸一个宠物小程序+springboot后台系统【源码开源】

博主分享了一款自己制作的宠物小程序系统,前端采用小程序,后端基于SpringBoot。提供了源码下载链接和视频演示,强调开源目的为助力学习,不支持源码贩卖。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

最近闲得无事,撸了一个小程序系统,源码给大家开源了。

系统的前端是小程序,用户进行操作,系统的后台是springboot。

源码地址:https://pan.baidu.com/s/1RsbgG2ZbJhFaDJxLTw0cTQ?pwd=9kj3 
提取码:9kj3 

首先看下系统的界面,是不是非常的nice?

 

 

 

如果想看完整的视频演示,如下:

https://www.bilibili.com/video/BV1Y341177Qd?spm_id_from=333.999.0.0

本人比较喜欢开源,希望能帮助到大家学习,但是同时也希望贩卖源码的请绕道!

然后看下系统的核心代码:

@RestController
@RequestMapping("/customer")
public class CustomerController {

	@Autowired
	private CustomerService customerService;

	/**
	 * 查询
	 */
	@RequestMapping("loadAllCustomer")
	public DataGridView loadAllCustomer(CustomerVo customerVo) {
		IPage<Customer> page = new Page<>(customerVo.getPage(), customerVo.getLimit());
		QueryWrapper<Customer> queryWrapper = new QueryWrapper<>();
		queryWrapper.like(StringUtils.isNotBlank(customerVo.getCustomername()), "customername",
				customerVo.getCustomername());
		queryWrapper.like(StringUtils.isNotBlank(customerVo.getPhone()), "phone", customerVo.getPhone());
		queryWrapper.like(StringUtils.isNotBlank(customerVo.getConnectionperson()), "connectionperson",
				customerVo.getConnectionperson());
		this.customerService.page(page, queryWrapper);
		return new DataGridView(page.getTotal(), page.getRecords());
	}

	/**
	 * 添加
	 */
	@RequestMapping("addCustomer")
	public ResultObj addCustomer(CustomerVo customerVo) {
		try {
			this.customerService.save(customerVo);
			return ResultObj.ADD_SUCCESS;
		} catch (Exception e) {
			e.printStackTrace();
			return ResultObj.ADD_ERROR;
		}
	}

	/**
	 * 修改
	 */
	@RequestMapping("updateCustome
评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值