|
@@ -12,13 +12,6 @@ import org.apache.ibatis.annotations.Update;
|
|
|
|
|
|
@Mapper
|
|
|
public interface MuseumPictureGroupMapper extends BaseMapperX<MuseumPictureGroupDO> {
|
|
|
-
|
|
|
- @Update("UPDATE museum_picture_table SET picture_set_introduce=#{picture_set_introduce} WHERE id =#{id}")
|
|
|
- void updatePictureGroup(MuseumPictureGroupDO museumPictureGroupDO);
|
|
|
-
|
|
|
- @Update("UPDATE museum_picture_table SET deleted=1 WHERE id =#{id}")
|
|
|
- void deletePictureGroup(Integer id);
|
|
|
-
|
|
|
@Select("SELECT * FROM museum_picture_table WHERE id = #{id} AND deleted =0 ")
|
|
|
MuseumPictureGroupDO selectPictureGroupById(@Param("id") Integer id);
|
|
|
|