| | |
| | | import com.mzl.flower.dto.response.flower.FlowerTagDTO; |
| | | import com.mzl.flower.entity.flower.FlowerTag; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Select; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.List; |
| | |
| | | @Repository |
| | | public interface FlowerTagMapper extends BaseMapper<FlowerTag> { |
| | | List<FlowerTagDTO> selectTagList(Page page, @Param("condition") FlowerTagQueryDTO dto); |
| | | |
| | | @Select("select * from t_flower_tag where id = #{id}") |
| | | FlowerTag selectFlowerTagById(Long id); |
| | | |
| | | } |