CusFollowMapper.java 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. /**
  22. * @desc : 根据条件进行查询(数量)
  23. * @author : 于继渤
  24. * @date : 2024/2/26 10:36
  25. */
  26. Long countByCond(CusFollowQuery cusFollowQuery);
  27. /**
  28. * @desc : 查询跟进记录
  29. * @author : 于继渤
  30. * @date : 2024/2/26 10:36
  31. */
  32. List<CusFollowResponse> selectByList(CusFollowQuery cusFollowQuery);
  33. }