CustomerTerminalMapper.java 337 B

123456789101112
  1. package com.xzl.web.mapper;
  2. import com.xzl.web.model.monitor.CustomerSearchDTO;
  3. import com.xzl.web.model.monitor.CustomerSearchVO;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import java.util.List;
  6. @Mapper
  7. public interface CustomerTerminalMapper {
  8. List<CustomerSearchVO> getCustomerListByPosition(CustomerSearchDTO searchDTO);
  9. }