phpcjl
2024-12-10 32ccda8d0192f7560ab2a0700d66a903cd0dc9ce
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);
}