package com.welampiot.service; import com.welampiot.dto.RepairPersonnelDTO; import com.welampiot.vo.RepairPersonnelDetailsVO; import com.welampiot.vo.RepairPersonnelVO; import org.apache.ibatis.annotations.Param; /** * ClassName: RepairPersonnelService * Package: com.welampiot.service * Description: * * @Author: zhj_Start * @Create: 2023/5/16 - 10:21 * @Version: v1.0 */ public interface RepairPersonnelService { RepairPersonnelVO getListByRepairPersonnelDTO(RepairPersonnelDTO dto); Integer getUserIdByUsername(String username); RepairPersonnelDetailsVO getDetailsByRepairPersonnelDTO(@Param("id") Integer id); void addRepairPersonnelDataByDTO(RepairPersonnelDTO dto); void updateRepairPersonnelDataByDTO(RepairPersonnelDTO dto); Integer findRepairPersonnelByDTO(RepairPersonnelDTO dto); Integer findUserIdById(@Param("id") Integer id); void deleteRepairPersonnelDataByDTO(@Param("id") Integer id); RepairPersonnelVO getRepairPersonnelDropDownListByDTO(Integer id); }