package com.aps.core.mapper;
|
|
import java.util.List;
|
import com.aps.core.domain.ApsShop;
|
import org.apache.ibatis.annotations.Mapper;
|
|
/**
|
* 车间Mapper接口
|
*
|
* @author ruoyi
|
* @date 2025-04-14
|
*/
|
@Mapper
|
public interface ApsShopMapper
|
{
|
/**
|
* 查询车间
|
*
|
* @param id 车间主键
|
* @return 车间
|
*/
|
public ApsShop selectApsShopById(String id);
|
|
/**
|
* 查询车间列表
|
*
|
* @param apsShop 车间
|
* @return 车间集合
|
*/
|
public List<ApsShop> selectApsShopList(ApsShop apsShop);
|
|
/**
|
* 新增车间
|
*
|
* @param apsShop 车间
|
* @return 结果
|
*/
|
public int insertApsShop(ApsShop apsShop);
|
|
/**
|
* 修改车间
|
*
|
* @param apsShop 车间
|
* @return 结果
|
*/
|
public int updateApsShop(ApsShop apsShop);
|
|
/**
|
* 删除车间
|
*
|
* @param id 车间主键
|
* @return 结果
|
*/
|
public int deleteApsShopById(String id);
|
|
/**
|
* 批量删除车间
|
*
|
* @param ids 需要删除的数据主键集合
|
* @return 结果
|
*/
|
public int deleteApsShopByIds(String[] ids);
|
}
|