New file |
| | |
| | | package com.dy.pipIrrSell.clientTemp; |
| | | |
| | | import com.dy.pipIrrGlobal.daoSe.SeClientMapper; |
| | | import com.dy.pipIrrGlobal.daoSe.SeClientTempMapper; |
| | | import com.dy.pipIrrGlobal.pojoSe.SeClientTemp; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author ZhuBaoMin |
| | | * @date 2024-09-26 15:03 |
| | | * @LastEditTime 2024-09-26 15:03 |
| | | * @Description |
| | | */ |
| | | |
| | | @Slf4j |
| | | @Service |
| | | public class ClientTempSv { |
| | | @Autowired |
| | | private SeClientTempMapper seClientTempMapper; |
| | | |
| | | @Autowired |
| | | private SeClientMapper seClientMapper; |
| | | |
| | | public List<SeClientTemp> getClientsByTownName(String townName ) { |
| | | return seClientTempMapper.getClientsByTownName(townName); |
| | | } |
| | | } |