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.
26 lines
807 B
26 lines
807 B
import { createAPI } from "@/utils/httpRequest.js";
|
|
|
|
/**
|
|
* 分组信息列表查询
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const partGroupInformationSearch = data => createAPI(`/plm/partGroupInformation/partGroupInformationSearch`,'post',data)
|
|
/**
|
|
* 分组信息新增
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const partGroupInformationSave = data => createAPI(`/plm/partGroupInformation/partGroupInformationSave`,'post',data)
|
|
/**
|
|
* 分组信息编辑
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const partGroupInformationEdit = data => createAPI(`/plm/partGroupInformation/partGroupInformationEdit`,'post',data)
|
|
/**
|
|
* 分组信息删除
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const partGroupInformationDelete = data => createAPI(`/plm/partGroupInformation/partGroupInformationDelete`,'post',data)
|