概述
成绩管理[scoreinfo]
--实体类:
com.jzscme.项目名.entity
类名:ScoreInfoEntity.java
--数据访问层:
包名:
com.jzscme.项目名.dao
接口名:IScoreInfoDao.java
方法:
注册:
public boolean InsertScoreInfo(String sid,String cName,int score);
根据课程名称查询成绩
public List<ScoreInfoEntity> selectScoreInfo(String cName);
--select st.SName,sc.CName,sc.Score,sc.RID from scoreinfo sc,studentinfo st where sc.SID=st.SID and sc.CName='C语言'
根据姓名和课程名称修改成绩
public boolean updateScoreInfo(String sName,String cName,int score);
--update scoreinfo set Score=11 where CName='C语言' and SID=(select SID from studentinfo where SName='董海')
根据姓名和课程名称删除成绩
public boolean deleteScoreInfo(String sName,String cName);
--delete from scoreinfo where CName='C语言' and SID=(select SID from studentinfo where SName='董海')
com.jzscme.项目名.dao.impl
类名:ScoreInfoDaoImpl.java
--业务逻辑层:
包名:
com.jzscme.项目名.biz
接口名:IScoreInfoBiz.java
注册:
public boolean InsertScoreInfo(String sid,String cName,int score);
根据课程名称查询成绩
public List<ScoreInfoEntity> selectScoreInfo(String cName);
--select st.SName,sc.CName,sc.Score,sc.RID from scoreinfo sc,studentinfo st where sc.SID=st.SID and sc.CName='C语言'
根据姓名和课程名称修改成绩
public boolean updateScoreInfo(String sName,String cName,int score);
--update scoreinfo set Score=11 where CName='C语言' and SID=(select SID from studentinfo where SName='董海')
根据姓名和课程名称删除成绩
public boolean deleteScoreInfo(String sName,String cName);
--delete from scoreinfo where CName='C语言' and SID=(select SID from studentinfo where SName='董海')
com.jzscme.项目名.biz.impl
类名:ScoreInfoBizImpl.java
专业管理:[majorinfo]
--实体类[MajorInfoEntity.java]
com.jzscme.项目名.entity
类名:MajorInfoEntity.java
--数据访问层:
包名:
com.jzscme.项目名.dao
接口名:IMajorInfoDao.java
方法:
注册:
public boolean register(String mName,String mRemark);
--insert into majorinfo values(?,?)
查询全部专业或
public List<MajorInfoEntity> selectMajorInfo();
--select * from majorinfo
根据专业编号修改专业信息
public boolean updateMajorInfo(int mId,String mName,String mRemark);
--update major set mName=? ,mRemark=? where mId=?
删除专业信息
public boolean deleteMajorInfo(int mId);
--delete from majorinfo where mid=?
com.jzscme.项目名.dao.impl
类名:MajorInfoDaoImpl.java
--业务逻辑层:
包名:
com.jzscme.项目名.biz
接口名:IMajorInfoBiz.java
com.jzscme.项目名.biz.impl
类名:MajorInfoBizImpl.java
课程表[courseinfo]
--实体类[CourseInfoEntity.java]
com.jzscme.项目名.entity
类名:CourseInfoEntity.java
--数据访问层:
包名:
com.jzscme.项目名.dao
接口名:ICourseInfoDao.java
方法:
注册
public boolean register(String CName , int CDate , int CNum, String MName , String CRemark);
根据专业名称查询课程信息
public List<CourseInfoEntity> selectCourseInfo(String mName);
根据科目编号和专业名称修改 课程信息
public boolean updateCourseInfo(int cId,String mName);
根据科目编号删除课程信息
public boolean deleteCourseInfo(int cId);
com.jzscme.项目名.dao.impl
类名:CourseInfoDaoImpl.java
--业务逻辑层:
包名:
com.jzscme.项目名.biz
接口名:ICourseInfoBiz.java
com.jzscme.项目名.biz.impl
类名:CourseInfoBizImpl.java
最后
以上就是彪壮烧鹅为你收集整理的asp.net里的接口示例的全部内容,希望文章能够帮你解决asp.net里的接口示例所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复