- package com.xzl.web.mapper;
- import com.xzl.web.model.monitor.CustomerSearchDTO;
- import com.xzl.web.model.monitor.CustomerSearchVO;
- import org.apache.ibatis.annotations.Mapper;
- import java.util.List;
- @Mapper
- public interface CustomerTerminalMapper {
- List<CustomerSearchVO> getCustomerListByPosition(CustomerSearchDTO searchDTO);
- }
|