import httputils from '@/api/httputils' //查询当前运行策略 export function queryCommand({getParams}) { return httputils.getJson(`/duoduo-service/transfer/chiller/command/queryData?projectId=Pj4413030001`, getParams) } //查询当日运行策略列表 export function getCommand({postParams}) { return httputils.postJson(`/duoduo-service/transfer/chiller/command/query?projectId=Pj4413030001`, postParams) } //修改策略备注 export function updateCommand({postParams}) { return httputils.postJson(`/duoduo-service/transfer/chiller/command/update?projectId=Pj4413030001`, postParams) }