Pu Zhibing
2024-12-05 03331f46c05015df9debef834e752b2f9d13f9e0
ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/service/TechnicianService.java
New file
@@ -0,0 +1,22 @@
package com.ruoyi.other.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.other.api.domain.Technician;
import com.ruoyi.other.vo.TechnicianDetailVO;
import com.ruoyi.other.vo.TechnicianVO;
import java.util.List;
/**
 * <p>
 *  服务类
 * </p>
 *
 * @author luodangjia
 * @since 2024-11-20
 */
public interface TechnicianService extends IService<Technician> {
    List<TechnicianVO> getTechnicianListByShopId(Long shopId);
    TechnicianDetailVO technicianDetail(Long technicianId);
}