陶杰
2024-12-09 14900ee3d583e2d96da5c67770d4f30f8fac5969
src/main/java/com/mzl/flower/mapper/flower/FlowerParamMapper.java
@@ -6,6 +6,7 @@
import com.mzl.flower.dto.response.flower.FlowerParamListDTO;
import com.mzl.flower.entity.flower.FlowerParam;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;
import org.springframework.stereotype.Repository;
import java.util.List;
@@ -24,4 +25,7 @@
            , @Param("idColumn")String idColumn, @Param("idValue") Object idValue);
    Map getTableDataById(@Param("tableName") String tableName, @Param("id") Long id);
    @Select("select * from t_flower_param where id = #{id}")
    FlowerParam selectFlowerParamById(Long id);
}