1.
phpcjl
2024-12-09 a3bc34209c07ed85867262c3c53e98e2da300a0b
ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/mapper/TechnicianMapper.java
@@ -2,6 +2,10 @@
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.other.api.domain.Technician;
import com.ruoyi.other.vo.TechnicianDetailVO;
import com.ruoyi.other.vo.TechnicianVO;
import java.util.List;
/**
 * <p>
@@ -13,4 +17,8 @@
 */
public interface TechnicianMapper extends BaseMapper<Technician> {
    List<TechnicianVO> selectTechnicianListByShopId(Long shopId, String name);
    TechnicianDetailVO selectTechnicianDetail(Long technicianId);
}