CusFollowMapper.java 958 B

123456789101112131415161718192021222324252627282930313233343536
  1. package com.dk.mdm.mapper.mst;
  2. import com.dk.mdm.model.pojo.mst.CusFollow;
  3. import com.dk.common.mapper.BaseMapper;
  4. import com.dk.mdm.model.query.mst.CusFollowQuery;
  5. import com.dk.mdm.model.query.mst.CustomerQuery;
  6. import com.dk.mdm.model.response.mst.CusFollowResponse;
  7. import com.dk.mdm.model.response.mst.CustomerResponse;
  8. import org.springframework.stereotype.Repository;
  9. import java.util.List;
  10. /**
  11. * 客户跟进 Mapper
  12. */
  13. @Repository
  14. public interface CusFollowMapper extends BaseMapper<CusFollow>{
  15. /**
  16. * @desc : 根据条件进行查询
  17. * @author : 于继渤
  18. * @date : 2024/2/26 10:36
  19. */
  20. List<CusFollowResponse> selectByCond(CusFollowQuery cusFollowQuery);
  21. List<CusFollowResponse> selectByList(CusFollowQuery cusFollowQuery);
  22. /**
  23. * @desc : 根据条件进行查询(数量)
  24. * @author : 于继渤
  25. * @date : 2024/2/26 10:36
  26. */
  27. Long countByCond(CusFollowQuery cusFollowQuery);
  28. }