基于SSM开发的宠物在线医疗管理系统 小程序 SpringBoot

10037基于SSM开发的宠物在线医疗管理系统

代码
鏈-椄:https://pan@baidu@com/s/1J6jgZDc60GVup3Se9NTpsw (把@换成 . 就可正常访问)
趧-紶-碼:9274
f/u枝此段-吶傛打开baidu網盤手机App,caozuo更方便哦

技术
Spring + SpringMVC + Mybatis

工具
eclipse + tomact + mysql + jdk

功能详情

功能详情
角色管理
账号管理
用户管理
预约挂号
健康记录
快速问诊

系统相关截图

● 预约挂号

在这里插入图片描述
● 后台首页

在这里插入图片描述
package com.jxust.svsh.service;

import java.util.List;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;

import com.jxust.svsh.dao.PersonDAO;
import com.jxust.svsh.entity.Person;

@Transactional
@Service
public class PersonService {

@Autowired
public PersonDAO personDAO;

/**
 * 添加
 * @param person
 */
public void addPerson(Person person) {
	personDAO.addPerson(person);
}
/**
 * 根据id查询
 * @param id
 * @return
 */
public Person getPersonById(String id){
	return personDAO.getPersonById(id);
}
/**
 * 更新
 * @param person
 */
public void updatePerson(Person person) {
	personDAO.updatePerson(person);
}
/**
 * 删除
 * @param id
 */
public void deletePersonById(String  id) {
	personDAO.deletePersonById(id);
}
/**
 * 查询所有
 * @return
 */
public List<Person> getPersons() {
	return personDAO.getPersons();
}

}package com.jxust.svsh.dao;

import java.util.List;

import javax.annotation.Resource;

import org.hibernate.Session;
import org.hibernate.SessionFactory;

  • 0
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值