SfzyFacadeImpl.java
上传用户:quasar007
上传日期:2022-08-11
资源大小:4067k
文件大小:1k
源码类别:

企业管理

开发平台:

Java

  1. package com.service;
  2. import java.util.List;
  3. import com.dao.SfzyDaoImpl;
  4. import com.dao.SfzyDao;
  5. import com.domain.FfzyForm;
  6. import com.domain.CsxxForm;
  7. import com.domain.SkhfkForm;
  8. public class SfzyFacadeImpl
  9.     implements SfzyFacade {
  10.   private SfzyDao dao = null;
  11.   public SfzyFacadeImpl() {
  12.     this.dao = new SfzyDaoImpl();
  13.   }
  14.   public List sfzySelect() {
  15.     return this.dao.sfzySelect();
  16.   }
  17.   public FfzyForm sfzySelect(FfzyForm fzy) {
  18.     return this.dao.sfzySelect(fzy);
  19.   }
  20.   public List csxxSelect(CsxxForm csxx) {
  21.     return this.dao.csxxSelect(csxx);
  22.   }
  23.   public int khxxMyd(SkhfkForm skhfk) {
  24.     return this.dao.khxxMyd(skhfk);
  25.   }
  26.   public int toatl() {
  27.     return this.dao.toatl();
  28.   }
  29.   /**
  30.    * sfzyFenYe
  31.    *
  32.    * @param number Integer
  33.    * @return List
  34.    */
  35.   public List sfzyFenYe(Integer number) {
  36.     return this.dao.sfzyFenYe(number);
  37.   }
  38.   /**
  39.    * totalCity
  40.    *
  41.    * @param csxx CsxxForm
  42.    * @return int
  43.    */
  44.   public int totalCity(CsxxForm csxx) {
  45.     return this.dao.totalCity(csxx);
  46.   }
  47.   /**
  48.    * fenyeCity
  49.    *
  50.    * @param number Integer
  51.    * @return List
  52.    */
  53.   public List fenyeCity(Integer number,CsxxForm csxx) {
  54.     return this.dao.fenyeCity(number,csxx);
  55.   }
  56.   public List csxxPrinfSelect(CsxxForm csxx) {
  57.     return dao.csxxPrinfSelect(csxx);
  58.   }
  59. }