| 123456789101112131415161718192021222324252627282930 |
- package com.dk.mdm.mapper.mst;
- import com.dk.mdm.model.pojo.mst.Customer;
- import com.dk.common.mapper.BaseMapper;
- import com.dk.mdm.model.query.mst.CustomerQuery;
- import com.dk.mdm.model.response.mst.CustomerResponse;
- import org.springframework.stereotype.Repository;
- import java.util.List;
- /**
- * 客户资料 Mapper
- */
- @Repository
- public interface CustomerMapper extends BaseMapper<Customer>{
- /**
- * @desc : 根据条件进行查询
- * @author : 于继渤
- * @date : 2024/2/26 10:36
- */
- List<CustomerResponse> selectByCond(CustomerQuery customerQuery);
- /**
- * @desc : 根据条件进行查询(数量)
- * @author : 于继渤
- * @date : 2024/2/26 10:36
- */
- Long countByCond(CustomerQuery customerQuery);
- }
|