import request from '@/config/axios' export interface RecipePointVO { recipeId?: number | string name?: string refer?: string dataUnit?: string remark?: string max?: string min?: string dataType?: string createTime?: string } export const RecipePointApi = { getRecipePointPage: async (params: any) => { return await request.get({ url: `/iot/recipe-point/page`, params }) }, getRecipePointList: async (recipeId: number) => { return await request.get({ url: `/iot/recipe-point/list?id=`+ recipeId }) } }