123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- package com.caimei.modules.user.dao;
- import com.caimei.modules.consult.entity.type.CmConsulttype;
- import com.caimei.modules.project.model.ServiceProviderModel;
- import com.caimei.modules.user.entity.*;
- import com.thinkgem.jeesite.common.persistence.CrudDao;
- import com.thinkgem.jeesite.common.persistence.annotation.MyBatisDao;
- import org.apache.ibatis.annotations.Param;
- import java.util.List;
- /**
- * 用户模块重构--会所管理DAO接口
- *
- * @author zcp
- * @version 2018-05-21
- */
- @MyBatisDao
- public interface NewCmClubDao extends CrudDao<NewCmClub> {
- List<NewCmClub> findProviderList(NewCmClub userClub);
- List<NewCmClub> findDistributionCLubList(NewCmClub userClub);
- List<NewCmClub> findClubById(Integer clubID);
- List<NewCmClub> textUserValue();
- NewCmClub getclubByUserId(Integer userId);
- Integer findSpId(Integer spID);
- List<ServiceProviderModel> spNameList();
- void insertBeansHistory(UserBeansHistory beansHistory);
- List<CmClubRemarks> findRemarksList(CmClubRemarks cmClubRemarks);
- List<String> getRemarksImageList(Integer remarksId);
- List<RemarksFileVo> getRemarksFileList(Integer remarksId);
- UserBeansHistory findLowOrder(Integer orderID);
- List<CmClubRemarks> findRegistList(CmClubRemarks cmClubRemarks);
- List<CmConsulttype> findConsults();
- List<CmSaleMan> findTeams();
- List<ServiceProviderModel> findGroup(Integer leaderId);
- String findClassName(String string);
- String upremakasList(CmRemaks cmRemaks);
- void addRemarks(CmRemaks cmRemaks);
- void upremarks(CmRemaks cmRemaks);
- void deleteRamarks(CmRemaks cmRemaks);
- List<Integer> ClubsIds(ClubChangeSp clubChangeSp);
- void oldname(@Param("oldserviceProviderId") Integer oldserviceProviderId, @Param("clubID") Integer clubID, @Param("oldSpID") Integer oldSpID, @Param("newSpID") Integer newSpID);
- void oldnames(@Param("clubID") Integer clubID, @Param("oldSpID") Integer oldSpID, @Param("newSpID") Integer newSpID);
- List<CmReport> ReportList(CmReport cmReport);
- List<VisitRemarkVo> findRegistLists(CmClubRemarks cmClubRemarks);
- Integer visitorRemarksConut(Integer reportID);
- Integer clubRemarksConut(Integer reportID);
- void updateAuditRemarks(@Param("reportID") Integer reportID, @Param("auditName") String auditName, @Param("auditText") String auditText, @Param("status") Integer status);
- void updateClubRemarks(Integer remarksId);
- void updateVisitorRemarks(Integer remarksId);
- void deleteClubRemarks(Integer reportID);
- void addRecordLinkage(@Param("describe") String describe, @Param("link") String link, @Param("clubId") Integer clubId);
- String recordLinkage(Integer clubId);
- String recordDescribe(Integer clubId);
- List<CmBehaviorRecord> selRegisterIP(Integer clubId);
- List<ClubStatistics> selStatisticsList(ClubStatistics statistics);
- List<CmBehaviorRecord> selPageLable();
- List<easyExcel> findExcelList(ClubStatistics statistics);
- List<String> getClubIds();
- List<ActiveClub> getActiveClubInfo(ActiveClub activeClub);
- }
|