ynu-api
Version:
a API Client for YNU
50 lines (49 loc) • 2.08 kB
TypeScript
import { GetToken } from "../index";
import { JzgListQueryParams, JzgListResult } from "./type/jzg_list";
import { JzgDetailQueryParams, JzgDetailResult, JzgFullDetailResult } from "./type/jzg_detail";
import { DmQueryParams, DmResult, DmDqztdmResult } from "./type/dm";
import { XpxgListQueryParams, XpxgListResult } from "./type/xpxg_list";
/**
* 教职工列表查询
*/
export declare const getJzgList: (params: JzgListQueryParams, options: GetToken) => Promise<JzgListResult[] | any>;
/**
* 教职工详情查询
*/
export declare const getJzgDetail: (params: JzgDetailQueryParams, options: GetToken) => Promise<JzgDetailResult[] | any>;
/**
* 教职工详情查询-全字段
*/
export declare const getJzgFullDetail: (params: JzgDetailQueryParams, options: GetToken) => Promise<JzgFullDetailResult[] | any>;
/**
* 获得人事系统民族代码
*/
export declare const getMzdm: (params: DmQueryParams, options: GetToken) => Promise<DmResult[] | any>;
/**
* 获得人事系统政治面貌代码
*/
export declare const getZzmmdm: (params: DmQueryParams, options: GetToken) => Promise<DmResult[] | any>;
/**
* 获得人事系统组织机构代码
*/
export declare const getYxdm: (params: DmQueryParams, options: GetToken) => Promise<DmResult[] | any>;
/**
* 获得人事教职工当前状态代码
*/
export declare const getDqztdm: (params: DmQueryParams, options: GetToken) => Promise<DmResult[] | any>;
/**
* 获得人事系统用人方式代码
*/
export declare const getYrfsdm: (params: DmQueryParams, options: GetToken) => Promise<DmResult[] | any>;
/**
* 获得人事系统学历代码
*/
export declare const getXldm: (params: DmQueryParams, options: GetToken) => Promise<DmResult[] | any>;
/**
* 获得人事系统专业技术职务级别,党政职务代码
*/
export declare const getGbzwjb: (params: DmQueryParams, options: GetToken) => Promise<DmDqztdmResult[] | any>;
/**
* 获得人获取校聘校管人员列表
*/
export declare const getXpxgList: (params: XpxgListQueryParams, options: GetToken) => Promise<XpxgListResult[] | any>;