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