2023-04-19 19:14:28 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* api接口统一管理
|
|
|
|
|
|
*/
|
2023-10-19 15:01:53 +08:00
|
|
|
|
import { post, get } from '../http'
|
2023-04-19 19:14:28 +08:00
|
|
|
|
|
|
|
|
|
|
//采购管理_采购需求计划
|
2023-10-19 15:01:53 +08:00
|
|
|
|
export const addMaterialPurchaseDemandApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialPurchaseDemandPlanning/add', data)
|
|
|
|
|
|
export const deleteMaterialPurchaseDemandApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialPurchaseDemandPlanning/delete', data)
|
|
|
|
|
|
export const editMaterialPurchaseDemandApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialPurchaseDemandPlanning/edit', data)
|
|
|
|
|
|
export const getMaterialPurchaseDemandPageApi = (data) =>
|
|
|
|
|
|
get('/xmgl/gt/gtMaterialPurchaseDemandPlanning/page', data)
|
2023-04-19 19:14:28 +08:00
|
|
|
|
|
|
|
|
|
|
//招采管理_招标管理
|
2023-10-19 15:01:53 +08:00
|
|
|
|
export const addGtMaterialTenderApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialTender/add', data)
|
|
|
|
|
|
export const deleGtMaterialTenderApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialTender/delete', data)
|
|
|
|
|
|
export const editGtMaterialTenderApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialTender/edit', data)
|
|
|
|
|
|
export const getTMaterialTenderApi = (data) =>
|
|
|
|
|
|
get('/xmgl/gt/gtMaterialTender/page', data)
|
2023-04-19 19:14:28 +08:00
|
|
|
|
|
|
|
|
|
|
//招采管理_招标管理_投标记录
|
2023-10-19 15:01:53 +08:00
|
|
|
|
export const addGtMaterialTenderRecordApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialTenderRecord/add', data)
|
|
|
|
|
|
export const deletGtMaterialTenderRecordApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialTenderRecord/delete', data)
|
|
|
|
|
|
export const editGtMaterialTenderRecordApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialTenderRecord/edit', data)
|
|
|
|
|
|
export const getGtMaterialTenderRecordPageApi = (data) =>
|
|
|
|
|
|
get('/xmgl/gt/gtMaterialTenderRecord/page', data)
|
2023-04-19 19:14:28 +08:00
|
|
|
|
|
|
|
|
|
|
//招采管理_招标管理_招标清单
|
2023-10-19 15:01:53 +08:00
|
|
|
|
export const addGtMaterialTenderBidApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialTenderBid/add', data)
|
|
|
|
|
|
export const deletGtMaterialTenderBidApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialTenderBid/delete', data)
|
|
|
|
|
|
export const editGtMaterialTenderBidApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialTenderBid/edit', data)
|
|
|
|
|
|
export const getGtMaterialTenderBidPageApi = (data) =>
|
|
|
|
|
|
get('/xmgl/gt/gtMaterialTenderBid/page', data)
|
2023-04-19 19:14:28 +08:00
|
|
|
|
|
|
|
|
|
|
//招采管理_供应商管理
|
2023-10-19 15:01:53 +08:00
|
|
|
|
export const addGtMaterialVendorApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialVendor/add', data)
|
|
|
|
|
|
export const deletGtMaterialVendorApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialVendor/delete', data)
|
|
|
|
|
|
export const editGtMaterialVendorApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialVendor/edit', data)
|
|
|
|
|
|
export const gettGtMaterialVendorPageApi = (data) =>
|
|
|
|
|
|
get('/xmgl/gt/gtMaterialVendor/page', data)
|
2023-04-23 18:50:10 +08:00
|
|
|
|
|
|
|
|
|
|
//合同管理_基本信息
|
2023-10-19 15:01:53 +08:00
|
|
|
|
export const addGtMaterialContractApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialContract/add', data)
|
|
|
|
|
|
export const deletGtMaterialContractApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialContract/delete', data)
|
|
|
|
|
|
export const editGtMaterialContractApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialContract/edit', data)
|
|
|
|
|
|
export const gettGtMaterialContractPageApi = (data) =>
|
|
|
|
|
|
get('/xmgl/gt/gtMaterialContract/page', data)
|
2023-04-23 18:50:10 +08:00
|
|
|
|
|
|
|
|
|
|
//合同管理_基本信息_付款记录
|
2023-10-19 15:01:53 +08:00
|
|
|
|
export const addGtMaterialContractPaymentRecordApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialContractPaymentRecord/add', data)
|
|
|
|
|
|
export const deletGtMaterialContractPaymentRecordApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialContractPaymentRecord/delete', data)
|
|
|
|
|
|
export const editGtMaterialContractPaymentRecordApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialContractPaymentRecord/edit', data)
|
|
|
|
|
|
export const getGtMaterialContractPaymentRecordPageApi = (data) =>
|
|
|
|
|
|
get('/xmgl/gt/gtMaterialContractPaymentRecord/list', data)
|
2023-04-23 18:50:10 +08:00
|
|
|
|
|
|
|
|
|
|
//合同管理_基本信息_到货验收
|
2023-10-19 15:01:53 +08:00
|
|
|
|
export const addGtMaterialContractArrivalAcceptanceApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialContractArrivalAcceptance/add', data)
|
|
|
|
|
|
export const deletGtMaterialContractArrivalAcceptanceApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialContractArrivalAcceptance/delete', data)
|
|
|
|
|
|
export const editGtMaterialContractArrivalAcceptanceApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialContractArrivalAcceptance/edit', data)
|
|
|
|
|
|
export const gettGMaterialContractArrivalAcceptancePageApi = (data) =>
|
|
|
|
|
|
get('/xmgl/gt/gtMaterialContractArrivalAcceptance/list', data)
|
2023-04-23 18:50:10 +08:00
|
|
|
|
|
2023-05-11 17:24:57 +08:00
|
|
|
|
//合同管理_基本信息_发票记录
|
2023-10-19 15:01:53 +08:00
|
|
|
|
export const addgtMaterialInvoiceRecordApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gtMaterialInvoiceRecord/add', data)
|
|
|
|
|
|
export const deletgtMaterialInvoiceRecordApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gtMaterialInvoiceRecord/delete', data)
|
|
|
|
|
|
export const editgtMaterialInvoiceRecordApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gtMaterialInvoiceRecord/edit', data)
|
|
|
|
|
|
export const getgtMaterialInvoiceRecordApi = (data) =>
|
|
|
|
|
|
get('/xmgl/gtMaterialInvoiceRecord/list', data)
|
2023-05-11 17:24:57 +08:00
|
|
|
|
|
2023-04-23 18:50:10 +08:00
|
|
|
|
//合同管理_供应商评价记录
|
2023-10-19 15:01:53 +08:00
|
|
|
|
export const addGtMaterialSupplierEvaluationRecordApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialSupplierEvaluationRecord/add', data)
|
|
|
|
|
|
export const deletGtMaterialSupplierEvaluationRecordApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialSupplierEvaluationRecord/delete', data)
|
|
|
|
|
|
export const editGtMaterialSupplierEvaluationRecordApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialSupplierEvaluationRecord/edit', data)
|
|
|
|
|
|
export const gettGMaterialSupplierEvaluationRecordPageApi = (data) =>
|
|
|
|
|
|
get('/xmgl/gt/gtMaterialSupplierEvaluationRecord/page', data)
|
2023-04-26 11:56:31 +08:00
|
|
|
|
|
|
|
|
|
|
//出入库管理
|
2023-10-19 15:01:53 +08:00
|
|
|
|
export const addGtMaterialInOutWarehouseApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialInOutWarehouse/addWithMaterial', data)
|
|
|
|
|
|
export const deletGtMaterialInOutWarehouseApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialInOutWarehouse/delete', data)
|
|
|
|
|
|
export const editGtMaterialInOutWarehouseApi = (data) =>
|
|
|
|
|
|
post('xmgl/gt/gtMaterialInOutWarehouse/editWithMaterial', data)
|
|
|
|
|
|
export const gettGMaterialInOutWarehousePageApi = (data) =>
|
|
|
|
|
|
get('/xmgl/gt/gtMaterialInOutWarehouse/page', data) //查询表单数据
|
|
|
|
|
|
export const gettGMaterialInOutWarehouseListApi = (data) =>
|
|
|
|
|
|
get('/xmgl/gt/gtMaterialPointCheckIntoWarehouseDetail/list', data) //根据id查物料
|
2023-04-25 17:27:25 +08:00
|
|
|
|
|
|
|
|
|
|
//设备管理_自有设备管理
|
2023-10-19 15:01:53 +08:00
|
|
|
|
export const addGtMaterialDeviceApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialDevice/add', data)
|
|
|
|
|
|
export const deletGtMaterialDeviceApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialDevice/delete', data)
|
|
|
|
|
|
export const editGtMaterialDeviceApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialDevice/edit', data)
|
|
|
|
|
|
export const gettGMaterialDevicePageApi = (data) =>
|
|
|
|
|
|
get('/xmgl/gt/gtMaterialDevice/page', data)
|
2023-04-25 17:27:25 +08:00
|
|
|
|
|
|
|
|
|
|
//设备管理_自有设备管理_维保记录
|
2023-10-19 15:01:53 +08:00
|
|
|
|
export const addGMaterialDeviceMaintenanceRecordApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialDeviceMaintenanceRecord/add', data)
|
|
|
|
|
|
export const deletGtMaterialDeviceMaintenanceRecordApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialDeviceMaintenanceRecord/delete', data)
|
|
|
|
|
|
export const editGtMaterialDeviceMaintenanceRecordApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialDeviceMaintenanceRecord/edit', data)
|
|
|
|
|
|
export const gettGMaterialDeviceMaintenanceRecordApi = (data) =>
|
|
|
|
|
|
get('/xmgl/gt/gtMaterialDeviceMaintenanceRecord/list', data)
|
2023-04-25 17:27:25 +08:00
|
|
|
|
|
|
|
|
|
|
//设备管理_自有设备管理_强制检验记录
|
2023-10-19 15:01:53 +08:00
|
|
|
|
export const addGMaterialDeviceMandatoryInspectionRecordApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialDeviceMandatoryInspectionRecord/add', data)
|
|
|
|
|
|
export const deletGtMaterialDeviceMandatoryInspectionRecordApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialDeviceMandatoryInspectionRecord/delete', data)
|
|
|
|
|
|
export const editGtMaterialDeviceMandatoryInspectionRecordApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialDeviceMandatoryInspectionRecord/edit', data)
|
|
|
|
|
|
export const gettGMaterialDeviceMandatoryInspectionRecordApi = (data) =>
|
|
|
|
|
|
get('/xmgl/gt/gtMaterialDeviceMandatoryInspectionRecord/list', data)
|
2023-05-06 16:11:59 +08:00
|
|
|
|
|
|
|
|
|
|
//检验检测_检测机构
|
2023-10-19 15:01:53 +08:00
|
|
|
|
export const addgtMaterialTestingInstitutionApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialTestingInstitution/add', data)
|
|
|
|
|
|
export const deletgtMaterialTestingInstitutionApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialTestingInstitution/delete', data)
|
|
|
|
|
|
export const editgtMaterialTestingInstitutionApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialTestingInstitution/edit', data)
|
|
|
|
|
|
export const gettgtMaterialTestingInstitutionApi = (data) =>
|
|
|
|
|
|
get('/xmgl/gt/gtMaterialTestingInstitution/page', data)
|
2023-05-06 16:11:59 +08:00
|
|
|
|
|
|
|
|
|
|
//检验检测_见证取样
|
2023-10-19 15:01:53 +08:00
|
|
|
|
export const addgtMaterialWitnessSampleApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialWitnessSample/add', data)
|
|
|
|
|
|
export const deletgtMaterialWitnessSampleApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialWitnessSample/delete', data)
|
|
|
|
|
|
export const editgtMaterialWitnessSampleApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialWitnessSample/edit', data)
|
|
|
|
|
|
export const gettgtMaterialWitnessSamplePageApi = (data) =>
|
|
|
|
|
|
get('/xmgl/gt/gtMaterialWitnessSample/page', data)
|
2023-05-06 16:11:59 +08:00
|
|
|
|
|
|
|
|
|
|
//检验检测_送样收样管理
|
2023-10-19 15:01:53 +08:00
|
|
|
|
export const addgtMaterialSendReceiveSampleApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialSendReceiveSample/add', data)
|
|
|
|
|
|
export const delgtMaterialSendReceiveSampleApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialSendReceiveSample/delete', data)
|
|
|
|
|
|
export const editgtMaterialSendReceiveSampleApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialSendReceiveSample/edit', data)
|
|
|
|
|
|
export const getgtMaterialSendReceiveSampleApi = (data) =>
|
|
|
|
|
|
get('/xmgl/gt/gtMaterialSendReceiveSample/page', data)
|
2023-05-06 16:11:59 +08:00
|
|
|
|
|
|
|
|
|
|
//检验检测_样品检测管理
|
2023-10-19 15:01:53 +08:00
|
|
|
|
export const addgtMaterialSampleTestApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialSampleTest/add', data)
|
|
|
|
|
|
export const delgtMaterialSampleTestApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialSampleTest/delete', data)
|
|
|
|
|
|
export const editgtMaterialSampleTestApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialSampleTest/edit', data)
|
|
|
|
|
|
export const getgtMaterialSampleTestApi = (data) =>
|
|
|
|
|
|
get('/xmgl/gt/gtMaterialSampleTest/page', data)
|
2023-05-06 16:11:59 +08:00
|
|
|
|
|
|
|
|
|
|
//质量监管_基础验收/竣工验收管理/样板验收信息/隐蔽验收记录/特殊分部工程验收/主体结构验收信息
|
2023-10-19 15:01:53 +08:00
|
|
|
|
export const addgtMaterialAcceptanceCheckApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialAcceptanceCheck/add', data)
|
|
|
|
|
|
export const delgtMaterialAcceptanceCheckApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialAcceptanceCheck/delete', data)
|
|
|
|
|
|
export const editgtMaterialAcceptanceCheckApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialAcceptanceCheck/edit', data)
|
|
|
|
|
|
export const getgtMaterialAcceptanceCheckApi = (data) =>
|
|
|
|
|
|
get('/xmgl/gt/gtMaterialAcceptanceCheck/page', data)
|
|
|
|
|
|
|
|
|
|
|
|
//智慧党建_党建活动(四川成润)
|
|
|
|
|
|
export const addgtMaterialPartyBuildingActivityApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialPartyBuildingActivity/add', data)
|
|
|
|
|
|
export const delgtMaterialPartyBuildingActivityApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialPartyBuildingActivity/delete', data)
|
|
|
|
|
|
export const editgtMaterialPartyBuildingActivityApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialPartyBuildingActivity/edit', data)
|
|
|
|
|
|
export const getgtMaterialPartyBuildingActivityApi = (data) =>
|
|
|
|
|
|
get('/xmgl/gt/gtMaterialPartyBuildingActivity/page', data)
|
|
|
|
|
|
|
|
|
|
|
|
//智慧党建_党员管理(四川成润)
|
|
|
|
|
|
export const addgtMaterialPartyMemberApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialPartyMember/add', data)
|
|
|
|
|
|
export const delgtMaterialPartyMemberApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialPartyMember/delete', data)
|
|
|
|
|
|
export const editgtMaterialPartyMemberApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialPartyMember/edit', data)
|
|
|
|
|
|
export const getgtMaterialPartyMemberApi = (data) =>
|
|
|
|
|
|
get('/xmgl/gt/gtMaterialPartyMember/page', data)
|
2023-05-06 16:11:59 +08:00
|
|
|
|
|
2023-10-19 15:01:53 +08:00
|
|
|
|
//智慧党建_文章管理
|
|
|
|
|
|
export const addgtMaterialArticleApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialArticle/add', data)
|
|
|
|
|
|
export const delgtMaterialArticleApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialArticle/delete', data)
|
|
|
|
|
|
export const editgtMaterialArticleApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialArticle/edit', data)
|
|
|
|
|
|
export const getgtMaterialArticleApi = (data) =>
|
|
|
|
|
|
get('/xmgl/gt/gtMaterialArticle/list', data)
|
2023-05-06 16:11:59 +08:00
|
|
|
|
|
2023-10-19 15:01:53 +08:00
|
|
|
|
//智慧党建_党员活动/学习讲话/党员关怀(沈阳盈和)
|
|
|
|
|
|
export const addPartyMemberActivityApi = (data) =>post('/xmgl/partyMemberActivitySpeakCare/add', data)
|
|
|
|
|
|
export const deletePartyMemberActivityApi = (data) =>post('/xmgl/partyMemberActivitySpeakCare/delete', data)
|
|
|
|
|
|
export const editPartyMemberActivityApi = (data) =>post('/xmgl/partyMemberActivitySpeakCare/edit', data)
|
|
|
|
|
|
export const getPartyMemberActivityPageApi = (data) =>get('/xmgl/partyMemberActivitySpeakCare/page', data)
|
2023-05-06 16:11:59 +08:00
|
|
|
|
|
2023-10-19 15:01:53 +08:00
|
|
|
|
//智慧党建_党员管理(沈阳盈和)
|
|
|
|
|
|
export const addPartyMemberManageApi = (data) =>post('/xmgl/partyMemberManage/add', data)
|
|
|
|
|
|
export const deletePartyMemberManageApi = (data) =>post('/xmgl/partyMemberManage/delete', data)
|
|
|
|
|
|
export const editPartyMemberManageApi = (data) =>post('/xmgl/partyMemberManage/edit', data)
|
|
|
|
|
|
export const getPartyMemberManagePageApi = (data) =>get('/xmgl/partyMemberManage/page', data)
|
|
|
|
|
|
|
|
|
|
|
|
//智慧党建_学习强国
|
|
|
|
|
|
export const addPartyMemberLearnStrongApi = (data) =>post('/xmgl/partyMemberLearnStrongCountry/add', data)
|
|
|
|
|
|
export const deletePartyMemberLearnStrongApi = (data) =>post('/xmgl/partyMemberLearnStrongCountry/delete', data)
|
|
|
|
|
|
export const editPartyMemberLearnStrongApi = (data) =>post('/xmgl/partyMemberLearnStrongCountry/edit', data)
|
|
|
|
|
|
export const getPartyMemberLearnStrongPageApi = (data) =>get('/xmgl/partyMemberLearnStrongCountry/page', data)
|
|
|
|
|
|
|
|
|
|
|
|
//智慧党建_宣传视频
|
|
|
|
|
|
export const addPartyPromotionalVideoApi = (data) =>post('/xmgl/partyPromotionalVideo/add', data)
|
|
|
|
|
|
export const deletePartyPromotionalVideoApi = (data) =>post('/xmgl/partyPromotionalVideo/delete', data)
|
|
|
|
|
|
export const editPartyPromotionalVideoApi = (data) =>post('/xmgl/partyPromotionalVideo/edit', data)
|
|
|
|
|
|
export const getPartyPromotionalVideoPageApi = (data) =>get('/xmgl/partyPromotionalVideo/page', data)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//获取政治面貌枚举信息
|
|
|
|
|
|
export const getPartyMemberManagePoliticalApi = (data) =>get('/xmgl/partyMemberManage/getPartyMemberManagePoliticalStatusEnum', data)
|
|
|
|
|
|
|
|
|
|
|
|
//获取岗位类型枚举信息
|
|
|
|
|
|
export const getPartyMemberManagePositionApi = (data) =>get('/xmgl/partyMemberManage/getPartyMemberManagePositionTypeEnum', data)
|
|
|
|
|
|
|
|
|
|
|
|
//获取文化程度枚举信息
|
|
|
|
|
|
export const getPartyMemberManageEducationApi = (data) =>get('/xmgl/partyMemberManage/getPartyMemberManageEducationLevelEnum', data)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//获取性别枚举信息
|
|
|
|
|
|
export const getPartyMemberManageGenderApi = (data) =>get('xmgl/partyMemberManage/getPartyMemberManageGenderEnum', data)
|
|
|
|
|
|
|
|
|
|
|
|
//获取民族枚举信息
|
|
|
|
|
|
export const getPartyMemberManageNationApi = (data) =>get('xmgl/partyMemberManage/getPartyMemberManageNationEnum', data)
|
2023-05-06 16:11:59 +08:00
|
|
|
|
|
2023-05-08 13:52:04 +08:00
|
|
|
|
|
2023-05-26 10:02:02 +08:00
|
|
|
|
//技术交底
|
2023-10-19 15:01:53 +08:00
|
|
|
|
export const addTechnicalClarificationApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialTechnicalClarification/add', data)
|
|
|
|
|
|
export const delTechnicalClarificationApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialTechnicalClarification/delete', data)
|
|
|
|
|
|
export const editTechnicalClarificationApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialTechnicalClarification/edit', data)
|
|
|
|
|
|
export const getTechnicalClarificationPageApi = (data) =>
|
|
|
|
|
|
get('/xmgl/gt/gtMaterialTechnicalClarification/page', data)
|
2023-05-26 10:02:02 +08:00
|
|
|
|
|
|
|
|
|
|
//作业单位
|
2023-10-19 15:01:53 +08:00
|
|
|
|
export const addGtMaterialOperatingUnitApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialOperatingUnit/add', data)
|
|
|
|
|
|
export const delGtMaterialOperatingUnitApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialOperatingUnit/delete', data)
|
|
|
|
|
|
export const editGtMaterialOperatingUnitApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialOperatingUnit/edit', data)
|
|
|
|
|
|
export const getGtMaterialOperatingUnitPageApi = (data) =>
|
|
|
|
|
|
get('/xmgl/gt/gtMaterialOperatingUnit/page', data)
|
2023-05-26 10:02:02 +08:00
|
|
|
|
|
|
|
|
|
|
//部门班组
|
2023-10-19 15:01:53 +08:00
|
|
|
|
export const addGtMaterialDepartmentTeamApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialDepartmentTeam/add', data)
|
|
|
|
|
|
export const delGtMaterialDepartmentTeamApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialDepartmentTeam/delete', data)
|
|
|
|
|
|
export const editGtMaterialDepartmentTeamApi = (data) =>
|
|
|
|
|
|
post('/xmgl/gt/gtMaterialDepartmentTeam/edit', data)
|
|
|
|
|
|
export const getGtMaterialDepartmentTeamPageApi = (data) =>
|
|
|
|
|
|
get('/xmgl/gt/gtMaterialDepartmentTeam/page', data)
|
|
|
|
|
|
export const getGtMaterialDepartmentTeamListApi = (data) =>
|
|
|
|
|
|
get('xmgl/gt/gtMaterialOperatingUnit/list', data)
|
2023-05-26 10:02:02 +08:00
|
|
|
|
|
|
|
|
|
|
//库存管理
|
2023-10-19 15:01:53 +08:00
|
|
|
|
export const getGtMaterialWarehouseDetailPageApi = (data) =>
|
|
|
|
|
|
get('/xmgl/gt/gtMaterialWarehouseDetail/page', data)
|
2023-06-07 18:25:22 +08:00
|
|
|
|
|
|
|
|
|
|
//部门班组(新)
|
2023-10-19 15:01:53 +08:00
|
|
|
|
export const getQueryDepartmentListApi = (data) =>
|
|
|
|
|
|
get('xmgl/departmentInfo/queryDepartmentAndTeamList', data)
|