| 12345678910111213141516171819202122232425262728293031 |
- /** ================================= 业务审核 ================================**/
- import {
- QryBusinessDjRsp,
- QryBussinessJsRsp,
- QueryBusinessDjReq,
- QueryBusinessJsReq
- } from "@/services/go/ermcp/business-review/interface";
- import {commonSearch_go} from "@/services/go";
- /**
- * 查询业务管理(结算)(对应菜单:业务管理/结算) /Ermcp/QueryBusinessJs
- * @param req.UserId 用户ID (必填)
- * @constructor
- */
- export function QueryBusinessJs(req: QueryBusinessJsReq): Promise<QryBussinessJsRsp[]> {
- return commonSearch_go('/Ermcp/QueryBusinessJs', req).catch((err) => {
- throw new Error(`业务管理 - 结算: ${err.message}`);
- });
- }
- /**
- * 查询业务管理(点价)(对应菜单:业务管理/点价) /Ermcp/QueryBusinessDj
- * @param req.UserId 用户ID (必填)
- * @constructor
- */
- export function QueryBusinessDj(req: QueryBusinessDjReq): Promise<QryBusinessDjRsp[]> {
- return commonSearch_go('/Ermcp/QueryBusinessDj', req).catch((err) => {
- throw new Error(`业务管理 - 点价: ${err.message}`);
- });
- }
|