• 大小: 18.74MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-07-20
  • 语言: Java
  • 标签: Javaweb  mysql  医院挂号  

资源简介

Javaweb医院挂号项目,带mysql数据库,自己做的,亲测可用。可以实现模拟医院挂号,医生排班。

资源截图

代码片段和文件信息

package com.action;

import java.util.List;
import java.util.Map;

import org.apache.struts2.ServletActionContext;

import com.dao.TAdminDAO;
import com.model.TAdmin;
import com.opensymphony.xwork2.ActionSupport;
import com.util.Pagination;

public class adminAction extends ActionSupport
{
private int userId;
private String userName;
private String userPw;
 
private String message;
private String path;

private int index=1;

private TAdminDAO adminDAO;


public String adminAdd()
{
TAdmin admin=new TAdmin();
admin.setUserName(userName);
admin.setUserPw(userPw);
adminDAO.save(admin);
this.setMessage(“操作成功“);
this.setPath(“adminManage.action“);
return “succeed“;
}



public String adminManage()
{
List adminList=adminDAO.findAll();
Map request=(Map)ServletActionContext.getContext().get(“request“);
request.put(“adminList“ adminList);
return ActionSupport.SUCCESS;
}

public String adminManageFenye()
{
List adminList=adminDAO.findAll();
int pageSize=3;
int fromIndex = (index - 1) * pageSize;
int toIndex = Math.min(fromIndex + pageSize adminList.size());
List adminListFenye = adminList.subList(fromIndex toIndex);


        Pagination p = new Pagination();//创建 分页对象
        p.setIndex(index);//设置页数
        p.setPageSize(pageSize);
        p.setTotle(adminList.size());//设置总共的条数
        p.setData(adminListFenye);//设置数据
        p.setPath(“adminManageFenye.action?“);//跳转的路径

Map request=(Map)ServletActionContext.getContext().get(“request“);
request.put(“page“ p);
return ActionSupport.SUCCESS;
}

public String adminDel()
{
adminDAO.delete(adminDAO.findById(userId));
this.setMessage(“删除成功“);
this.setPath(“adminManage.action“);
return “succeed“;
}



public TAdminDAO getAdminDAO()
{
return adminDAO;
}

public void setAdminDAO(TAdminDAO adminDAO)
{
this.adminDAO = adminDAO;
}

public String getMessage()
{
return message;
}

public int getIndex()
{
return index;
}



public void setIndex(int index)
{
this.index = index;
}



public void setMessage(String message)
{
this.message = message;
}

public String getPath()
{
return path;
}

public void setPath(String path)
{
this.path = path;
}

public int getUserId()
{
return userId;
}

public void setUserId(int userId)
{
this.userId = userId;
}

public String getUserName()
{
return userName;
}

public void setUserName(String userName)
{
this.userName = userName;
}

public String getUserPw()
{
return userPw;
}

public void setUserPw(String userPw)
{
this.userPw = userPw;
}
 
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       8644  2013-05-14 10:43  yygh (2)\mysql数据库\db_yygh.sql

     文件       5256  2012-08-10 23:13  yygh (2)\yygh\.classpath

     文件        539  2012-04-01 23:04  yygh (2)\yygh\.myhibernatedata

     文件        285  2012-08-10 23:11  yygh (2)\yygh\.mymetadata

     文件       1632  2012-04-01 23:04  yygh (2)\yygh\.project

     文件        330  2012-04-01 23:04  yygh (2)\yygh\.settings\org.eclipse.jdt.core.prefs

     文件        273  2012-04-01 23:04  yygh (2)\yygh\.springBeans

     文件       2785  2012-04-01 23:04  yygh (2)\yygh\src\com\action\adminAction.java

     文件       3459  2012-04-01 23:04  yygh (2)\yygh\src\com\action\gonggaoAction.java

     文件        189  2012-04-01 23:04  yygh (2)\yygh\src\com\action\indexAction.java

     文件       3386  2012-04-01 23:04  yygh (2)\yygh\src\com\action\keshiAction.java

     文件       2657  2012-04-01 23:04  yygh (2)\yygh\src\com\action\liuyanAction.java

     文件       4936  2012-04-01 23:04  yygh (2)\yygh\src\com\action\UserAction.java

     文件       4194  2012-04-01 23:04  yygh (2)\yygh\src\com\action\yishengAction.java

     文件       3943  2012-04-01 23:04  yygh (2)\yygh\src\com\action\yuyueAction.java

     文件       3980  2012-04-01 23:04  yygh (2)\yygh\src\com\dao\TAdminDAO.java

     文件       5495  2012-04-01 23:04  yygh (2)\yygh\src\com\dao\TGonggaoDAO.java

     文件       3733  2012-04-01 23:04  yygh (2)\yygh\src\com\dao\TKeshiDAO.java

     文件       4153  2012-04-01 23:04  yygh (2)\yygh\src\com\dao\TLiuyanDAO.java

     文件       3729  2012-04-01 23:04  yygh (2)\yygh\src\com\dao\TUserDAO.java

     文件       4809  2012-04-01 23:04  yygh (2)\yygh\src\com\dao\TYishengDAO.java

     文件       4361  2012-04-01 23:04  yygh (2)\yygh\src\com\dao\TYuyueDAO.java

     文件        782  2012-04-01 23:04  yygh (2)\yygh\src\com\model\TAdmin.hbm.xml

     文件        887  2012-04-01 23:04  yygh (2)\yygh\src\com\model\TAdmin.java

     文件       2327  2012-04-01 23:04  yygh (2)\yygh\src\com\model\TGonggao.hbm.xml

     文件       3782  2012-04-01 23:04  yygh (2)\yygh\src\com\model\TGonggao.java

     文件        926  2012-04-01 23:04  yygh (2)\yygh\src\com\model\TKeshi.hbm.xml

     文件       1364  2012-04-01 23:04  yygh (2)\yygh\src\com\model\TKeshi.java

     文件       1089  2012-04-01 23:04  yygh (2)\yygh\src\com\model\TLiuyan.hbm.xml

     文件       1393  2012-04-01 23:04  yygh (2)\yygh\src\com\model\TLiuyan.java

............此处省略1028个文件信息

评论

共有 条评论