资源简介

牙医管理系统是牙医的工作,来开发和设计的软件,实现牙医对患者信息、患者预约、库房物品、患者病历等工作的管理,利于对患者信息进行管理,方便的对患者多种信息进行查找与统计。

资源截图

代码片段和文件信息

package dentist.common;


import java.lang.reflect.ParameterizedType;

import com.opensymphony.xwork2.ActionSupport;
import com.opensymphony.xwork2.ModelDriven;
import com.opensymphony.xwork2.Preparable;

public abstract class baseAction extends ActionSupport implements ModelDriven
Preparable {


private static final long serialVersionUID = -1314560516485837572L;

public T model ;

@SuppressWarnings(“unchecked“)
public baseAction(){
try {
  ParameterizedType type = (ParameterizedType) this.getClass().getGenericSuperclass();
Class clazz = (Class) type.getActualTypeArguments()[0];
model = clazz.newInstance();
} catch (Exception e) {
e.printStackTrace();
}
}

public void prepare() throws Exception {
}

public T getModel(){
return model ;
}

}

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

     文件        772  2015-06-05 09:46  Dentist\.classpath

     文件       1040  2015-04-13 09:16  Dentist\.project

     文件        503  2015-04-13 09:16  Dentist\.settings\.jsdtscope

     文件        146  2015-04-22 10:48  Dentist\.settings\org.eclipse.core.resources.prefs

     文件        364  2015-04-13 09:16  Dentist\.settings\org.eclipse.jdt.core.prefs

     文件        550  2015-04-13 09:17  Dentist\.settings\org.eclipse.wst.common.component

     文件        305  2015-06-05 09:44  Dentist\.settings\org.eclipse.wst.common.project.facet.core.xml

     文件         49  2015-04-13 09:16  Dentist\.settings\org.eclipse.wst.jsdt.ui.superType.container

     文件          6  2015-04-13 09:16  Dentist\.settings\org.eclipse.wst.jsdt.ui.superType.name

     文件       4187  2015-04-24 09:49  Dentist\build\classes\beans.xml

     文件       1601  2015-06-05 09:46  Dentist\build\classes\dentist\common\baseAction.class

     文件       1181  2015-06-05 09:46  Dentist\build\classes\dentist\common\baseDao.class

     文件       5033  2015-06-05 09:46  Dentist\build\classes\dentist\common\baseDaoImpl.class

     文件       1189  2015-06-05 09:46  Dentist\build\classes\dentist\common\baseService.class

     文件       3507  2015-06-05 09:46  Dentist\build\classes\dentist\common\baseServiceImpl.class

     文件       1813  2015-06-05 09:46  Dentist\build\classes\dentist\patient\Arrears.class

     文件        882  2015-04-22 14:32  Dentist\build\classes\dentist\patient\Arrears.hbm.xml

     文件       3505  2015-06-05 09:46  Dentist\build\classes\dentist\patient\ArrearsControl.class

     文件       2362  2015-06-05 09:46  Dentist\build\classes\dentist\patient\Orders.class

     文件       1090  2015-05-20 16:28  Dentist\build\classes\dentist\patient\Orders.hbm.xml

     文件       3424  2015-06-05 09:46  Dentist\build\classes\dentist\patient\OrdersControl.class

     文件       3744  2015-06-05 09:46  Dentist\build\classes\dentist\patient\OutMake.class

     文件       1638  2015-05-20 16:28  Dentist\build\classes\dentist\patient\OutMake.hbm.xml

     文件       4664  2015-06-05 09:46  Dentist\build\classes\dentist\patient\OutMakeControl.class

     文件       4633  2015-06-05 09:46  Dentist\build\classes\dentist\patient\Patient.class

     文件       1998  2015-05-20 15:51  Dentist\build\classes\dentist\patient\Patient.hbm.xml

     文件       4854  2015-06-05 09:46  Dentist\build\classes\dentist\patient\PatientControl.class

     文件       5072  2015-06-05 09:46  Dentist\build\classes\dentist\patient\Payment.class

     文件       2194  2015-05-21 10:40  Dentist\build\classes\dentist\patient\Payment.hbm.xml

     文件       5331  2015-06-17 17:04  Dentist\build\classes\dentist\patient\PaymentControl.class

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

评论

共有 条评论