12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- 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> findClubById(Integer clubID);
- List<NewCmClub> textUserValue();
- NewCmClub getclubByUserId(Integer userId);
- Integer findSpId(Integer spID);
- List<ServiceProviderModel> spNameList();
- void insertBeansHistory(UserBeansHistory beansHistory);
- void updateByStatus(@Param("clubStatus") int clubStatus, @Param("confirmUserId") Integer confirmUserId);
- 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);
- }
|