1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- package com.ruoyi.asset.mapper;
- import java.util.List;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.ruoyi.asset.domain.TbPlace;
- import org.apache.ibatis.annotations.Mapper;
- @Mapper
- public interface TbPlaceMapper extends BaseMapper<TbPlace>
- {
-
- public TbPlace selectTbPlaceById(Long id);
-
- public List<TbPlace> selectTbPlaceList(TbPlace tbPlace);
-
- public int insertTbPlace(TbPlace tbPlace);
-
- public int updateTbPlace(TbPlace tbPlace);
-
- public int deleteTbPlaceById(Long id);
-
- public int deleteTbPlaceByIds(Long[] ids);
- }
|