zhengyiming
5 天以前 8eec3bdd93b15bb26f53e3e4b1f5c1679f2efc1a
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,