cloudroam
2024-12-04 2432594a4d11b47a503795349defa31872f85789
src/main/java/com/mzl/flower/mapper/flower/FlowerCategoryMapper.java
@@ -7,6 +7,7 @@
import com.mzl.flower.dto.response.flower.FlowerCategoryTreeDTO;
import com.mzl.flower.entity.flower.FlowerCategory;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;
import org.springframework.stereotype.Repository;
import java.time.LocalDate;
@@ -24,4 +25,8 @@
    List<FlowerCategoryDailyDTO> selectHomeCategoryDaily(Page page
            , @Param("partnerId") Long partnerId, @Param("day") LocalDate day);
    @Select("select * from t_flower_category where id = #{id}")
    FlowerCategory selectCategoryById(Long id);
}