mirror of
https://github.com/FreeeBird/hotel.git
synced 2025-11-02 21:44:50 +08:00
update RoomType
This commit is contained in:
@@ -1,17 +1,21 @@
|
||||
package cn.mafangui.hotel.mapper;
|
||||
|
||||
import cn.mafangui.hotel.entity.RoomType;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Component
|
||||
public interface RoomTypeMapper {
|
||||
int deleteByPrimaryKey(Integer typeId);
|
||||
|
||||
int insert(RoomType record);
|
||||
RoomType selectByPrimaryKey(Integer typeId);
|
||||
int updateByPrimaryKeySelective(RoomType record);
|
||||
int updateByPrimaryKey(RoomType record);
|
||||
|
||||
int insertSelective(RoomType record);
|
||||
|
||||
RoomType selectByPrimaryKey(Integer typeId);
|
||||
|
||||
int updateByPrimaryKeySelective(RoomType record);
|
||||
|
||||
int updateByPrimaryKey(RoomType record);
|
||||
int updateByRoomTypeSelective(RoomType record);
|
||||
int deleteByRoomType(RoomType roomType);
|
||||
RoomType selectByRoomType(RoomType roomType);
|
||||
List<RoomType> findAll();
|
||||
}
|
||||
Reference in New Issue
Block a user