You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.2 KiB
Java

package com.kiisoo.ic.customer.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.kiisoo.ic.customer.entity.OpCustomer;
import com.kiisoo.ic.customer.bean.OpCustomerDTO;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
import java.util.Date;
import java.util.List;
import java.util.Set;
/**
*
*/
@Repository
public interface OpCustomerDOMapper extends BaseMapper<OpCustomer> {
/**
* id广
* @param shopIds id
* @param startDate 广
* @param endDate 广
* @return
*/
List<OpCustomerDTO> selectCustomerInfoByShopIds(@Param("shopId") Set<Long> shopIds,
@Param("startDate")Date startDate, @Param("endDate") Date endDate);
/**
* id广
* @param sellerId id
* @param startDate 广
* @param endDate 广
* @return
*/
List<OpCustomerDTO> selectCustomerInfoBySellerId(@Param("sellerId") long sellerId, @Param("startDate") Date startDate,@Param("endDate") Date endDate);
}