NewCmClubDao.java 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. package com.caimei.modules.user.dao;
  2. import com.caimei.modules.consult.entity.type.CmConsulttype;
  3. import com.caimei.modules.project.model.ServiceProviderModel;
  4. import com.caimei.modules.user.entity.*;
  5. import com.thinkgem.jeesite.common.persistence.CrudDao;
  6. import com.thinkgem.jeesite.common.persistence.annotation.MyBatisDao;
  7. import org.apache.ibatis.annotations.Param;
  8. import java.util.List;
  9. /**
  10. * 用户模块重构--会所管理DAO接口
  11. *
  12. * @author zcp
  13. * @version 2018-05-21
  14. */
  15. @MyBatisDao
  16. public interface NewCmClubDao extends CrudDao<NewCmClub> {
  17. List<NewCmClub> findClubById(Integer clubID);
  18. NewCmClub getclubByUserId(Integer userId);
  19. Integer findSpId(Integer spID);
  20. void insertBeansHistory(UserBeansHistory beansHistory);
  21. void updateByStatus(@Param("clubStatus") int clubStatus, @Param("confirmUserId") Integer confirmUserId);
  22. List<CmClubRemarks> findRemarksList(CmClubRemarks cmClubRemarks);
  23. List<String> getRemarksImageList(Integer remarksId);
  24. List<RemarksFileVo> getRemarksFileList(Integer remarksId);
  25. UserBeansHistory findLowOrder(Integer orderID);
  26. List<CmClubRemarks> findRegistList(CmClubRemarks cmClubRemarks);
  27. List<CmConsulttype> findConsults();
  28. List<CmSaleMan> findTeams();
  29. List<ServiceProviderModel> findGroup(Integer leaderId);
  30. String findClassName(String string);
  31. }