| | |
| | | |
| | | import java.util.List; |
| | | import com.aps.core.domain.ApsPlant; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | | /** |
| | |
| | | * @date 2025-04-14 |
| | | */ |
| | | @Mapper |
| | | public interface ApsPlantMapper |
| | | public interface ApsPlantMapper extends BaseMapper<ApsPlant> |
| | | { |
| | | /** |
| | | * 查询工厂管理 |
| | |
| | | * @param id 工厂管理主键 |
| | | * @return 工厂管理 |
| | | */ |
| | | public ApsPlant selectApsPlantById(Long id); |
| | | public ApsPlant selectApsPlantById(String id); |
| | | |
| | | /** |
| | | * 查询工厂管理列表 |
| | |
| | | * @param id 工厂管理主键 |
| | | * @return 结果 |
| | | */ |
| | | public int deleteApsPlantById(Long id); |
| | | public int deleteApsPlantById(String id); |
| | | |
| | | /** |
| | | * 批量删除工厂管理 |
| | |
| | | * @param ids 需要删除的数据主键集合 |
| | | * @return 结果 |
| | | */ |
| | | public int deleteApsPlantByIds(Long[] ids); |
| | | public int deleteApsPlantByIds(String[] ids); |
| | | } |