KhxxFacadeImpl.java
上传用户:quasar007
上传日期:2022-08-11
资源大小:4067k
文件大小:1k
- package com.service;
- import java.util.List;
- import com.dao.KhxxDao;
- import com.dao.KhxxDaoImpl;
- import com.domain.KhxxForm;
- public class KhxxFacadeImpl
- implements KhxxFacade {
- private KhxxDao khxx = null;
- public KhxxFacadeImpl() {
- this.khxx = new KhxxDaoImpl();
- }
- public List khxxSelect() {
- return this.khxx.khxxSelect();
- }
- public KhxxForm khxxSelectOne(KhxxForm khxx) {
- return this.khxx.khxxSelectOne(khxx);
- }
- public int khxxCount() {
- return this.khxx.khxxCount();
- }
- public void khxxInsert(KhxxForm khxx) {
- this.khxx.khxxInsert(khxx);
- }
- public void khxxDelete(KhxxForm khxx) {
- this.khxx.khxxDelete(khxx);
- }
- public void khxxUpdate(KhxxForm khxx) {
- this.khxx.khxxUpdate(khxx);
- }
- public KhxxForm khxxMc(KhxxForm khxx) {
- return this.khxx.khxxMc(khxx);
- }
- }