陶杰
2025-01-08 ae1471f378f399f76518539ec8992e64a3673436
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);
}