yy217-api
Version:
a API Client for YNU
33 lines (31 loc) • 632 B
text/typescript
/**
* 资实处房产系统代码查询参数,包括组织机构,高基表,产权性质,取得方式
*/
export type DmQueryParams = {
/**
* 代码
*/
code?: string,
}
/**
* 资实处房产系统代码响应结果,包括产权性质,取得方式
*/
export type DmResult = {
/**
* 名称
*/
name: string,
/**
* 代码
*/
code: string,
}
/**
* 资实处房产系统代码响应结果,包括组织机构,高基表
*/
export type DmUnitAndClassResult = {
/**
* 父级代码
*/
parentcode: string,
} & DmResult