zhengyiming
4 天以前 dbebb8c83128e379bb24d8d7c1bf0838d7c5ebdc
src/services/api/LgGigWorker.ts
@@ -515,6 +515,21 @@
  });
}
/** 更新合同模板自定义内容值 POST /api/LgGigWorker/UpdateCustomerContractTemplateCustomContentValue */
export async function updateCustomerContractTemplateCustomContentValue(
  body: API.UpdateCustomerContractTemplateCustomContentValueInput,
  options?: API.RequestConfig
) {
  return request<any>('/api/LgGigWorker/UpdateCustomerContractTemplateCustomContentValue', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
/** 更新人员信息 POST /api/LgGigWorker/UpdateLgGigWorkerUserInfo */
export async function updateLgGigWorkerUserInfo(
  body: API.UpdateLgGigWorkerUserInfoInput,