//	根据id查询full类
  @Override
  public MedicineInformationsFmdFull selectMedicineInformationsFmdFullById(
      Integer medicineInformationsFmdId) {

    return medicineInformationsFmdDao.selectMedicineInformationsFmdFullById(
        medicineInformationsFmdId);
  }
  @Override
  public List<MedicineInformationsFmdFull> selectMedicineInformationsFmdFullByPageAndConditon(
      String conditon, Page page) {

    return medicineInformationsFmdDao.selectMedicineInformationsFmdFullByPageAndConditon(
        conditon, page);
  }
 //  查询全部实体full
 @Override
 public List<MedicineInformationsFmdFull> selectMedicineInformationsFmdFullAll() {
   // TODO Auto-generated method stub
   return medicineInformationsFmdDao.selectMedicineInformationsFmdFullAll();
 }
  @Override
  public List<MedicineInformationsFmdFull> selectMedicineInformationsFmdFullByConditon(
      String conditon) {

    return medicineInformationsFmdDao.selectMedicineInformationsFmdFullByConditon(conditon);
  }
 //  分页查询full
 public List<MedicineInformationsFmdFull> selectMedicineInformationsFmdFullByPage(Page page) {
   page.setTotalCount(baseDao.getRowCount(MedicineInformationsFmd.class));
   return medicineInformationsFmdDao.selectMedicineInformationsFmdFullByPage(page);
 }