package com.ruoyi.station.mapper; import java.util.List; import com.ruoyi.station.domain.MjTeam; /** * 组Mapper接口 * * @author ruoyi * @date 2020-08-27 */ public interface MjTeamMapper { /** * 查询组 * * @param id 组ID * @return 组 */ public MjTeam selectMjTeamById(String id); /** * 查询组列表 * * @param mjTeam 组 * @return 组集合 */ public List selectMjTeamList(MjTeam mjTeam); /** * 新增组 * * @param mjTeam 组 * @return 结果 */ public int insertMjTeam(MjTeam mjTeam); /** * 修改组 * * @param mjTeam 组 * @return 结果 */ public int updateMjTeam(MjTeam mjTeam); /** * 删除组 * * @param id 组ID * @return 结果 */ public int deleteMjTeamById(String id); /** * 批量删除组 * * @param ids 需要删除的数据ID * @return 结果 */ public int deleteMjTeamByIds(String[] ids); String getName(String orderId); }