You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
399 B
8 lines
399 B
import { createAPI } from "@/utils/httpRequest.js";
|
|
|
|
export const controlData = data => createAPI(`/sysSceneDynamicControlModel/controlData`,'post',data)
|
|
export const sysControlModelSearch = data => createAPI(`/sysSceneDynamicControlModel/sysControlModelSearch`,'post',data)
|
|
export const sysControlModelUpdate = data => createAPI(`/sysSceneDynamicControlModel/sysControlModelUpdate`,'post',data)
|
|
|
|
|
|
|