| 参数名称 | 类型 | 必填 | 说明 |
|---|---|---|---|
| code | string | 是 | 股票代码 |
| startdate | string | 否 | 开始时间 |
| enddate | string | 否 | 结束时间 |
| fqtype | string | 否 | 复权类型(前复权1,后复权2,不复权0,默认0) |
| 参数名称 | 类型 | 说明 |
|---|---|---|
| name | string | 股票名称 |
| code | string | 股票代码 |
| startdate | string | 开始时间 |
| enddate | string | 结束时间 |
| stockid | string | 股票ID |
| date | string | 日期 |
| openningprice | string | 开盘价 |
| closingprice | string | 收盘价 |
| maxprice | string | 最高价 |
| minprice | string | 最低价 |
| tradenum | string | 成交量(手) |
| tradeamount | string | 成交额 |
| turnoverrate | string | 换手率 |
| changepercent | string | 涨跌幅 |
| changeamount | string | 涨跌额 |
| amplitude | string | 振幅 |
| per | string | 市盈率 |
| pbr | string | 市净率 |
| totalmarket | string | 总市值 |
| circulationmarket | string | 流通市值 |
<?php
require_once 'curl.func.php';
$appkey = 'your_appkey_here';//你的appkey
$url = "https://api.jisuapi.com/stockhistory/query?code=300917&startdate=2020-12-24&enddate=2020-12-25&appkey=$appkey";
$result = curlOpen($url);
$jsonarr = json_decode($result, true);
//exit(var_dump($jsonarr));
if($jsonarr['status'] != 0)
{
echo $jsonarr['msg'];
exit();
}
$result = $jsonarr['result'];
echo $result['code'].' '.$result['name'].' '.$result['startdate'].' '.$result['enddate'].' '.'
';
$list = $result['list'];
foreach($list as $val)
{
echo $val['stockid'].' '.$val['date'].' '.$val['openningprice'].' '.$val['closingprice'].' '.$val['maxprice'].' '.$val['minprice'].' '.$val['tradenum'].' '.$val['tradeamount'].' '.$val['turnoverrate'].' '.$val['changepercent'].' '.$val['changeamount'].' '.$val['amplitude'].' '.$val['per'].' '.$val['pbr'].' '.$val['totalmarket'].' '.$val['circulationmarket'].' '.'
';
}
#!/usr/bin/python
# encoding:utf-8
import requests
data = {}
data["appkey"] = "your_appkey_here"
data["code"] = "300917"
data["startdate"] = "2020-12-24"
data["enddate"] = "2020-12-25"
url = "https://api.jisuapi.com/stockhistory/query"
response = requests.get(url,params=data)
jsonarr = response.json()
if jsonarr["status"] != 0:
print(jsonarr["msg"])
exit()
result = jsonarr["result"]
print(result["code"],result["name"],result["startdate"],result["enddate"])
list = result["list"];
for val in list:
print(val["stockid"],val["date"],val["openningprice"],val["closingprice"],val["maxprice"],val["minprice"],val["tradenum"],val["tradeamount"],val["turnoverrate"],val["changepercent"],val["changeamount"],val["amplitude"],val["per"],val["pbr"],val["totalmarket"],val["circulationmarket"])
{
"status": 0,
"msg": "ok",
"result": {
"code": "300917",
"name": "C特发",
"startdate": "2020-12-24",
"enddate": "2020-12-25",
"list": [
{
"stockid": 6769,
"date": "2020-12-24",
"openningprice": "40.10",
"closingprice": "53.92",
"maxprice": "54.20",
"minprice": "40.10",
"tradenum": 166623,
"tradeamount": "756991472.00",
"turnoverrate": "78.110",
"changepercent": "32.48",
"changeamount": "13.22",
"amplitude": "34.64",
"per": null,
"pbr": null,
"totalmarket": null,
"circulationmarket": null
},
{
"stockid": 6769,
"date": "2020-12-25",
"openningprice": "51.01",
"closingprice": "44.04",
"maxprice": "51.88",
"minprice": "43.80",
"tradenum": 132553,
"tradeamount": "619542864.00",
"turnoverrate": "62.130",
"changepercent": "-18.32",
"changeamount": "-9.88",
"amplitude": "14.99",
"per": null,
"pbr": null,
"totalmarket": null,
"circulationmarket": null
}
]
}
}
| 参数名称 | 类型 | 必填 | 说明 |
|---|---|---|---|
| classid | int | 是 | 分类ID 1沪深股市 |
| pagenum | string | 否 | 当前页,默认1 |
| pagesize | string | 否 | 每页数量,默认30 |
| 参数名称 | 类型 | 说明 |
|---|---|---|
| name | string | 股票名称 |
| code | string | 股票代码 |
| pagenum | string | 当前页 |
| pagesize | string | 每页数量 |
| total | int | 总数 |
<?php
require_once 'curl.func.php';
$appkey = 'your_appkey_here';//你的appkey
$url = "https://api.jisuapi.com/stockhistory/list?classid=1&pagenum=1&pagesize=10&appkey=$appkey";
$result = curlOpen($url);
$jsonarr = json_decode($result, true);
//exit(var_dump($jsonarr));
if($jsonarr['status'] != 0)
{
echo $jsonarr['msg'];
exit();
}
$result = $jsonarr['result'];
echo $result['pagesize'].' '.$result['pagenum'].' '.$result['total'].' '.$result['classid'].' '.'
';
$list = $result['list'];
foreach($list as $val)
{
echo $val['name'].' '.$val['code'].' '.'
';
}
#!/usr/bin/python
# encoding:utf-8
import requests
data = {}
data["appkey"] = "your_appkey_here"
data["classid"] = 1
data["pagenum"] = 1
data["pagesize"] = 10
url = "https://api.jisuapi.com/stockhistory/list"
response = requests.get(url,params=data)
jsonarr = response.json()
if jsonarr["status"] != 0:
print(jsonarr["msg"])
exit()
result = jsonarr["result"]
print(result["pagesize"],result["pagenum"],result["total"],result["classid"])
list = result["list"];
for val in list:
print(val["name"],val["code"])
{
"status": 0,
"msg": "ok",
"result": {
"pagesize": 10,
"pagenum": 1,
"total": 4486,
"classid": 1,
"list": [
{
"name": "信达增利",
"code": "166105"
},
{
"name": "R003",
"code": "201000"
},
{
"name": "R007",
"code": "201001"
},
{
"name": "R014",
"code": "201002"
},
{
"name": "R028",
"code": "201003"
},
{
"name": "R091",
"code": "201004"
},
{
"name": "R182",
"code": "201005"
},
{
"name": "R001",
"code": "201008"
},
{
"name": "R002",
"code": "201009"
},
{
"name": "R004",
"code": "201010"
}
]
}
}
| 参数名称 | 类型 | 必填 | 说明 |
|---|---|---|---|
| code | string | 是 | 股票代码 |
| 参数名称 | 类型 | 说明 |
|---|---|---|
| name | string | 股票名称 |
| code | string | 股票代码 |
| price | string | 最新价 |
| maxprice | string | 最高价 |
| minprice | string | 最低价 |
| tradenum | string | 成交量(手) |
| tradeamount | string | 成交额 |
| turnoverrate | string | 换手率 |
| openningprice | string | 开盘价 |
| lastclosingprice | string | 昨收盘价 |
| changepercent | string | 涨跌幅 |
| changeamount | string | 涨跌额 |
| amplitude | string | 振幅 |
| quantityratio | string | 量比 |
| per | string | 市盈率 |
| pbr | string | 市净率 |
| totalmarket | string | 总市值 |
| circulationmarket | string | 流通市值 |
| updatetime | string | 更新时间 |
<?php
require_once 'curl.func.php';
$appkey = 'your_appkey_here';//你的appkey
$url = "https://api.jisuapi.com/stockhistory/detail?code=300917&appkey=$appkey";
$result = curlOpen($url);
$jsonarr = json_decode($result, true);
//exit(var_dump($jsonarr));
if($jsonarr['status'] != 0)
{
echo $jsonarr['msg'];
exit();
}
$result = $jsonarr['result'];
echo $result['name'].' '.$result['code'].' '.$result['classid'].' '.$result['price'].' '.$result['maxprice'].' '.$result['minprice'].' '.$result['tradenum'].' '.$result['tradeamount'].' '.$result['turnoverrate'].' '.$result['openningprice'].' '.$result['lastclosingprice'].' '.$result['changepercent'].' '.$result['changeamount'].' '.$result['amplitude'].' '.$result['quantityratio'].' '.$result['per'].' '.$result['pbr'].' '.$result['totalmarket'].' '.$result['circulationmarket'].' '.$result['updatetime'].' '.'
';
#!/usr/bin/python
# encoding:utf-8
import requests
data = {}
data["appkey"] = "your_appkey_here"
data["code"] = 300917
url = "https://api.jisuapi.com/stockhistory/detail"
response = requests.get(url,params=data)
jsonarr = response.json()
if jsonarr["status"] != 0:
print(jsonarr["msg"])
exit()
result = jsonarr["result"]
print(result["name"],result["code"],result["classid"],result["price"],result["maxprice"],result["minprice"],result["tradenum"],result["tradeamount"],result["turnoverrate"],result["openningprice"],result["lastclosingprice"],result["changepercent"],result["changeamount"],result["amplitude"],result["quantityratio"],result["per"],result["pbr"],result["totalmarket"],result["circulationmarket"],result["updatetime"])
{
"status": 0,
"msg": "ok",
"result": {
"name": "C特发",
"code": "300917",
"classid": 1,
"price": "40.70",
"maxprice": "43.80",
"minprice": "40.20",
"tradenum": 76873,
"tradeamount": "319857632.00",
"turnoverrate": "36.030",
"openningprice": "43.00",
"lastclosingprice": "47.60",
"changepercent": "-14.5",
"changeamount": "-6.90",
"amplitude": "7.56",
"quantityratio": "1.03",
"per": "41.91",
"pbr": "5.36",
"totalmarket": null,
"circulationmarket": null,
"updatetime": "2020-12-22 11:56:20"
}
}
| 参数名称 | 类型 | 必填 | 说明 |
|---|---|---|---|
| code | string | 是 | 股票代码 |
| pagenum | string | 否 | 页码 |
| pagesize | string | 否 | 每页条数 |
| 参数名称 | 类型 | 说明 |
|---|---|---|
| code | string | 股票代码 |
| name | string | 股票名称 |
| pagesize | string | 页码 |
| pagenum | string | 每页条数 |
| total | string | 总数 |
| stockid | string | 股票id |
| date | string | 日期 |
| qfqfactor | string | 前复权因子 |
| hfqfactor | string | 后复权因子 |
{
"status": 0,
"msg": "ok",
"result": {
"code": "300917",
"name": "特发服务",
"pagesize": 10,
"pagenum": 1,
"total": 7,
"list": [
{
"stockid": 6769,
"date": "1900-01-01",
"qfqfactor": "1.7504037676308000",
"hfqfactor": "1.0000000000000000"
},
{
"stockid": 6769,
"date": "2020-12-21",
"qfqfactor": "1.7504037676308000",
"hfqfactor": "1.0000000000000000"
},
{
"stockid": 6769,
"date": "2021-06-08",
"qfqfactor": "1.3344178478654000",
"hfqfactor": "1.3117358782564000"
},
{
"stockid": 6769,
"date": "2022-06-16",
"qfqfactor": "1.0192220506047000",
"hfqfactor": "1.7173919722324000"
},
{
"stockid": 6769,
"date": "2023-05-24",
"qfqfactor": "1.0103515366743000",
"hfqfactor": "1.7324700404697000"
},
{
"stockid": 6769,
"date": "2024-05-24",
"qfqfactor": "1.0059880239521000",
"hfqfactor": "1.7399846975853000"
},
{
"stockid": 6769,
"date": "2025-05-27",
"qfqfactor": "1.0000000000000000",
"hfqfactor": "1.7504037676308000"
}
]
}
}
| 参数名称 | 类型 | 必填 | 说明 |
|---|---|---|---|
| code | string | 是 | 股票代码 |
| indicator | string | 否 | 获取口径:按报告期|按单季度 |
| startdate | string | 否 | 开始日期 |
| enddate | string | 否 | 结束日期 |
| 参数名称 | 类型 | 说明 |
|---|---|---|
| code | string | 股票代码 (如 688808) |
| name | string | 股票名称 (如 联讯仪器) |
| startdate | string | 统计开始日期 |
| enddate | string | 统计结束日期 |
| indicator | string | 抓取口径:按报告期|按单季度 |
| report_date | string | 报告期日期 Y-m-d |
| report_type | string | 报告类型(年报/中报/季报等) |
| secucode | string | 证券代码含市场,如 301389.SZ |
| org_code | string | 机构/公司代码 |
| org_type | string | 机构类型 |
| report_date_name | string | 报告期展示名称 |
| security_type_code | string | 证券类别代码 |
| notice_date | string | 公告日期 |
| update_date | string | 数据更新日期 |
| currency | string | 计价币种 |
| epsjb | string | 基本每股收益 |
| epskcjb | string | 扣除非经常性损益后的基本每股收益 |
| epsxs | string | 稀释每股收益 |
| bps | string | 每股净资产 |
| mgzbgj | string | 每股资本公积 |
| mgwfplr | string | 每股未分配利润 |
| mgjyxjje | string | 每股经营活动现金流量净额 |
| totaloperatereve | string | 营业总收入 |
| mlr | string | 毛利润 |
| parentnetprofit | string | 归属于母公司股东的净利润 |
| kcfjcxsyjlr | string | 扣除非经常性损益后的净利润 |
| totaloperaterevetz | string | 营业总收入同比变动 |
| parentnetprofittz | string | 归母净利润同比变动 |
| kcfjcxsyjlrtz | string | 扣非净利润同比变动 |
| yyzsrgdhbzc | string | 营业总收入滚动环比 |
| netprofitrphbzc | string | 净利润滚动环比 |
| kfjlrgdhbzc | string | 扣非净利润滚动环比 |
| roejq | string | 加权平均净资产收益率 ROE |
| roekcjq | string | 扣非后加权平均净资产收益率 |
| zzcjll | string | 总资产净利率/总资产报酬率 |
| xsjll | string | 销售净利率 |
| xsmll | string | 销售毛利率 |
| yszkyysr | string | 利息收入等包含在内的营业收入相关 |
| xsjxlyysr | string | 销售收到的现金净流入与收入比 |
| jyxjlyysr | string | 经营活动现金流量净额与营收比 |
| taxrate | string | 税负/所得税等与收入口径相关比率 |
| ld | string | 流动比率(常见 LD 口径) |
| sd | string | 速动比率(常见 SD 口径) |
| xjllb | string | 现金流量比率 |
| zcfzl | string | 资产负债率 |
| qycs | string | 权益乘数 |
| cqbl | string | 长期资本/负债相关结构比率 |
| zzczzts | string | 总资产周转天数 |
| chzzts | string | 存货周转天数 |
| yszkzzts | string | 应收账款周转天数 |
| toazzl | string | 总资产周转率 |
| chzzl | string | 存货周转率 |
| yszkzzl | string | 应收账款周转率 |
| totaldeposits | string | 存款总额(金融类) |
| grossloans | string | 贷款总额(金融类) |
| ltdrr | string | 存贷比等监管指标 |
| newcapitalader | string | 资本相关监管/披露项 |
| hxyjbczl | string | 核心一级资本充足率等 |
| nonperloan | string | 不良贷款(额或率依源数据) |
| bldkbbl | string | 拨备/贷款比等 |
| nzbje | string | 准备金等金额类 |
| total_roi | string | 总投资收益率/综合收益率(保险等) |
| net_roi | string | 净投资收益率 |
| earned_premium | string | 已赚保费(保险) |
| compensate_expense | string | 赔付支出(保险) |
| surrender_rate_life | string | 寿险退保率 |
| solvency_ar | string | 偿付能力充足率 |
| jzb | string | 净资本/资本金相关(券商等) |
| jzc | string | 净资产/净资本分项 |
| jzbjzc | string | 净资本与净资产比值等 |
| zygpgmjzc | string | 自营固定收益类/净资本 |
| zygdsylzqjzb | string | 固定收益类杠杆率与净资本 |
| yyfxzb | string | 运营风险指标 |
| jjywfxzb | string | 经纪业务风险指标 |
| zqzyywfxzb | string | 证券自营业务风险指标 |
| zqcxywfxzb | string | 证券承销业务风险指标 |
| rzrqywfxzb | string | 融资融券业务风险指标 |
| epsjbtz | string | 基本每股收益同比变动 |
| bpstz | string | 每股净资产同比变动 |
| mgzbgjtz | string | 每股资本公积同比变动 |
| mgwfplrtz | string | 每股未分配利润同比变动 |
| mgjyxjjetz | string | 每股经营现金流同比变动 |
| roejqtz | string | 加权 ROE 同比变动 |
| zzcjlltz | string | 总资产净利率同比变动 |
| zcfzltz | string | 资产负债率同比变动 |
| report_year | string | 财报年度 |
| roic | string | 投入资本回报率 |
| roictz | string | ROIC 同比变动 |
| nbv_life | string | 新业务价值 NBV(寿险) |
| nbv_rate | string | 新业务价值率 |
| nhjz_current_amt | string | 内含价值或准备金当前额 |
| djd_toi_yoy | string | 当季营业总收入同比 |
| djd_dpnp_yoy | string | 当季归母净利润同比 |
| djd_deductdpnp_yoy | string | 当季扣非净利润同比 |
| djd_toi_qoq | string | 当季营业总收入环比 |
| djd_dpnp_qoq | string | 当季归母净利润环比 |
| djd_deductdpnp_qoq | string | 当季扣非净利润环比 |
| xsmll_tb | string | 销售毛利率同比 |
| per_toi | string | 人均收入类指标 PER_TOI |
| per_oi | string | 人均收入/营业指标 PER_OI |
| per_ebit | string | 人均 EBIT |
| staff_num | string | 员工人数 |
| avg_toi | string | 人均创收 |
| avg_net_profit | string | 人均净利润 |
| prepaid_accounts_ratio | string | 预付款项占比或周转相关 |
| accounts_payable_tr | string | 应付账款周转率 |
| fixed_asset_tr | string | 固定资产周转率 |
| current_asset_tr | string | 流动资产周转率 |
| prepaid_accounts_tdays | string | 预付账款周转天数 |
| payable_tdays | string | 应付账款周转天数 |
| operate_cycle | string | 营业周期 |
| guard_speed_ratio | string | 营运资本/护城河类速度指标 |
| cash_ratio | string | 现金比率 |
| interest_coverage_ratio | string | 利息保障倍数 |
| ca_ta | string | 流动资产/总资产 |
| nca_ta | string | 非流动资产/总资产 |
| liquidation_ratio | string | 清偿/清算保障类比率 |
| interest_debt_ratio | string | 带息负债率 |
| fc_liabilities | string | 固定/融资性负债口径(FC_LIABILITIES) |
| fcff_forward | string | 前向测算企业自由现金流 FCFF |
| fcff_back | string | 回溯企业自由现金流 FCFF |
| ss_oi | string | 销售商品提供劳务收到的现金与销售相关比 |
| ss_ta | string | 经营活动现金流与销售/资产比 |
| nco_op | string | 非经常性经营现金流项 |
| nco_netprofit | string | 非经常性损益与净利关系 |
| nco_fixed | string | 非经常性固定资产相关 |
| first_adequacy_ratio | string | 一级资本充足率 |
| net_interest_spread | string | 净利差(银行等) |
| net_interest_margin | string | 净息差(银行等) |
| loan_advances | string | 贷款及垫款 |
| non_performing_loan | string | 不良贷款率或不良额 |
| overdue_loans | string | 逾期贷款 |
| loan_provision_ratio | string | 贷款拨备覆盖率等 |
| revenue_ratio | string | 收入结构占比 |
| liability | string | 负债相关披露口径(LIABILITY) |
| capital_provisions_sum | string | 资本计提/拨备合计 |
| risk_coverage | string | 风险覆盖率(券商风控) |
| capital_leverage_ratio | string | 资本杠杆率 |
| liquidity_coverage_ratio | string | 流动性覆盖率 |
| net_funding_ratio | string | 净稳定资金比率 |
| net_capital_liabilities | string | 净资本与负债比值 |
| net_assets_liabilities | string | 净资产与负债比值 |
| proprietary_capital | string | 自营权益类规模与净资本 |
| is_bz | string | 是否北交所等指标标记 |
{
"status": 0,
"msg": "ok",
"result": {
"code": "688808",
"name": "联讯仪器",
"startdate": "2025-06-09",
"enddate": "2026-06-09",
"list": [
{
"indicator": "按报告期",
"report_date": "2026-03-31",
"report_type": "一季报",
"secucode": "688808.SH",
"org_code": "10000440894",
"org_type": "通用",
"report_date_name": "2026一季报",
"security_type_code": "058001001",
"notice_date": "2026-04-29",
"update_date": "2026-04-29",
"currency": "CNY",
"epsjb": "1.54000000",
"epskcjb": "",
"epsxs": "1.54000000",
"bps": "13.32579280",
"mgzbgj": "8.00760718",
"mgwfplr": "3.98589151",
"mgjyxjje": "1.08328095",
"totaloperatereve": "487720104.79000002",
"mlr": "325586077.95999998",
"parentnetprofit": "118903186.14000000",
"kcfjcxsyjlr": "116408674.30000000",
"totaloperaterevetz": "142.52014794",
"parentnetprofittz": "515.16526178",
"kcfjcxsyjlrtz": "564.64127592",
"yyzsrgdhbzc": "24.00324135",
"netprofitrphbzc": "57.34156947",
"kfjlrgdhbzc": "58.24183068",
"roejq": "12.43000000",
"roekcjq": "",
"zzcjll": "5.79767672",
"xsjll": "24.34238330",
"xsmll": "66.75674732",
"yszkyysr": "",
"xsjxlyysr": "0.43207156",
"jyxjlyysr": "0.17102562",
"taxrate": "0.47725490",
"ld": "1.80533436",
"sd": "1.09379009",
"xjllb": "0.07897985",
"zcfzl": "55.34398357",
"qycs": "2.23933991",
"cqbl": "1.23933991",
"zzczzts": "377.87800248",
"chzzts": "363.28810069",
"yszkzzts": "91.44878806",
"toazzl": "0.23817211",
"chzzl": "0.24773726",
"yszkzzl": "0.98415738",
"totaldeposits": "",
"grossloans": "",
"ltdrr": "",
"newcapitalader": "",
"hxyjbczl": "",
"nonperloan": "",
"bldkbbl": "",
"nzbje": "",
"total_roi": "",
"net_roi": "",
"earned_premium": "",
"compensate_expense": "",
"surrender_rate_life": "",
"solvency_ar": "",
"jzb": "",
"jzc": "",
"jzbjzc": "",
"zygpgmjzc": "",
"zygdsylzqjzb": "",
"yyfxzb": "",
"jjywfxzb": "",
"zqzyywfxzb": "",
"zqcxywfxzb": "",
"rzrqywfxzb": "",
"epsjbtz": "450.00000000",
"bpstz": "44.90771457",
"mgzbgjtz": "7.99500300",
"mgwfplrtz": "456.07826598",
"mgjyxjjetz": "258.68554729",
"roejqtz": "300.96774194",
"zzcjlltz": "312.13598675",
"zcfzltz": "8.46019724",
"report_year": "2026",
"roic": "10.56372887",
"roictz": "350.61072685",
"nbv_life": "",
"nbv_rate": "",
"nhjz_current_amt": "",
"djd_toi_yoy": "",
"djd_dpnp_yoy": "",
"djd_deductdpnp_yoy": "",
"djd_toi_qoq": "25.55644395",
"djd_dpnp_qoq": "54.40258965",
"djd_deductdpnp_qoq": "51.44699724",
"xsmll_tb": "2.18726517",
"per_toi": "6.33402733",
"per_oi": "6.33402733",
"per_ebit": "1.53600767",
"staff_num": "",
"avg_toi": "",
"avg_net_profit": "",
"prepaid_accounts_ratio": "5.22908311",
"accounts_payable_tr": "0.41756940",
"fixed_asset_tr": "1.92257835",
"current_asset_tr": "0.29226055",
"prepaid_accounts_tdays": "17.21143041",
"payable_tdays": "215.53303602",
"operate_cycle": "454.78758162",
"guard_speed_ratio": "0.99098525",
"cash_ratio": "0.43798567",
"interest_coverage_ratio": "",
"ca_ta": "83.01383475",
"nca_ta": "16.98616525",
"liquidation_ratio": "179.79923271",
"interest_debt_ratio": "7.48927334",
"fc_liabilities": "43.79856695",
"fcff_forward": "50013971.00229180",
"fcff_back": "-66240174.57186260",
"ss_oi": "0.83398329",
"ss_ta": "0.17709460",
"nco_op": "0.69853738",
"nco_netprofit": "0.70258371",
"nco_fixed": "0.32591735",
"first_adequacy_ratio": "",
"net_interest_spread": "",
"net_interest_margin": "",
"loan_advances": "",
"non_performing_loan": "",
"overdue_loans": "",
"loan_provision_ratio": "",
"revenue_ratio": "",
"liability": "1271139151.81999993",
"capital_provisions_sum": "",
"risk_coverage": "",
"capital_leverage_ratio": "",
"liquidity_coverage_ratio": "",
"net_funding_ratio": "",
"net_capital_liabilities": "",
"net_assets_liabilities": "",
"proprietary_capital": "",
"is_bz": "0"
},
{
"indicator": "按报告期",
"report_date": "2025-12-31",
"report_type": "年报",
"secucode": "688808.SH",
"org_code": "10000440894",
"org_type": "通用",
"report_date_name": "2025年报",
"security_type_code": "058001001",
"notice_date": "2026-04-03",
"update_date": "2026-04-23",
"currency": "CNY",
"epsjb": "2.26000000",
"epskcjb": "2.21000000",
"epsxs": "2.26000000",
"bps": "11.65000000",
"mgzbgj": "7.86472776",
"mgwfplr": "2.44169428",
"mgjyxjje": "1.01857600",
"totaloperatereve": "1194068403.50999999",
"mlr": "702577870.25999999",
"parentnetprofit": "173651557.88999999",
"kcfjcxsyjlr": "169799200.00000000",
"totaloperaterevetz": "51.41048960",
"parentnetprofittz": "23.59995305",
"kcfjcxsyjlrtz": "28.54178574",
"yyzsrgdhbzc": "",
"netprofitrphbzc": "",
"kfjlrgdhbzc": "",
"roejq": "22.68000000",
"roekcjq": "22.18000000",
"zzcjll": "11.23834680",
"xsjll": "14.56385073",
"xsmll": "58.83899684",
"yszkyysr": "",
"xsjxlyysr": "0.40892643",
"jyxjlyysr": "0.06568330",
"taxrate": "0.42408611",
"ld": "1.91633294",
"sd": "1.24594472",
"xjllb": "0.10503705",
"zcfzl": "50.13110619",
"qycs": "2.00525803",
"cqbl": "1.00525803",
"zzczzts": "466.52647005",
"chzzts": "325.31828550",
"yszkzzts": "99.32940036",
"toazzl": "0.77166039",
"chzzl": "1.10660856",
"yszkzzl": "3.62430457",
"totaldeposits": "",
"grossloans": "",
"ltdrr": "",
"newcapitalader": "",
"hxyjbczl": "",
"nonperloan": "",
"bldkbbl": "",
"nzbje": "",
"total_roi": "",
"net_roi": "",
"earned_premium": "",
"compensate_expense": "",
"surrender_rate_life": "",
"solvency_ar": "",
"jzb": "",
"jzc": "",
"jzbjzc": "",
"zygpgmjzc": "",
"zygdsylzqjzb": "",
"yyfxzb": "",
"jjywfxzb": "",
"zqzyywfxzb": "",
"zqcxywfxzb": "",
"rzrqywfxzb": "",
"epsjbtz": "24.17582418",
"bpstz": "32.16483838",
"mgzbgjtz": "7.90284746",
"mgwfplrtz": "424.23361783",
"mgjyxjjetz": "-2.91570070",
"roejqtz": "-8.87906790",
"zzcjlltz": "-14.90004141",
"zcfzltz": "5.18943784",
"report_year": "2025",
"roic": "19.00857611",
"roictz": "-14.95768866",
"nbv_life": "",
"nbv_rate": "",
"nhjz_current_amt": "",
"djd_toi_yoy": "",
"djd_dpnp_yoy": "",
"djd_deductdpnp_yoy": "",
"djd_toi_qoq": "",
"djd_dpnp_qoq": "",
"djd_deductdpnp_qoq": "",
"xsmll_tb": "-7.53134008",
"per_toi": "15.50738186",
"per_oi": "15.50738186",
"per_ebit": "2.21486341",
"staff_num": "",
"avg_toi": "",
"avg_net_profit": "",
"prepaid_accounts_ratio": "28.28502425",
"accounts_payable_tr": "2.06677140",
"fixed_asset_tr": "7.86991465",
"current_asset_tr": "0.96892576",
"prepaid_accounts_tdays": "12.72758322",
"payable_tdays": "174.18472123",
"operate_cycle": "424.65032816",
"guard_speed_ratio": "1.04292318",
"cash_ratio": "0.43622404",
"interest_coverage_ratio": "35.46710292",
"ca_ta": "79.55121418",
"nca_ta": "20.44878582",
"liquidation_ratio": "198.44054438",
"interest_debt_ratio": "7.43655815",
"fc_liabilities": "43.62240403",
"fcff_forward": "55312495.14139090",
"fcff_back": "-68453770.29566389",
"ss_oi": "0.86469085",
"ss_ta": "0.57401635",
"nco_op": "0.44783828",
"nco_netprofit": "0.45100228",
"nco_fixed": "0.31193888",
"first_adequacy_ratio": "",
"net_interest_spread": "",
"net_interest_margin": "",
"loan_advances": "",
"non_performing_loan": "",
"overdue_loans": "",
"loan_provision_ratio": "",
"revenue_ratio": "",
"liability": "901722888.98000002",
"capital_provisions_sum": "",
"risk_coverage": "",
"capital_leverage_ratio": "",
"liquidity_coverage_ratio": "",
"net_funding_ratio": "",
"net_capital_liabilities": "",
"net_assets_liabilities": "",
"proprietary_capital": "",
"is_bz": "0"
},
{
"indicator": "按报告期",
"report_date": "2025-09-30",
"report_type": "三季报",
"secucode": "688808.SH",
"org_code": "10000440894",
"org_type": "通用",
"report_date_name": "2025三季报",
"security_type_code": "058001001",
"notice_date": "2025-12-31",
"update_date": "2026-04-20",
"currency": "CNY",
"epsjb": "1.26000000",
"epskcjb": "1.21000000",
"epsxs": "1.26000000",
"bps": "10.50000000",
"mgzbgj": "7.71598253",
"mgwfplr": "1.72086861",
"mgjyxjje": "-0.33094417",
"totaloperatereve": "805621511.07000005",
"mlr": "476479003.12000000",
"parentnetprofit": "96643013.92000000",
"kcfjcxsyjlr": "92934900.00000000",
"totaloperaterevetz": "",
"parentnetprofittz": "",
"kcfjcxsyjlrtz": "",
"yyzsrgdhbzc": "",
"netprofitrphbzc": "",
"kfjlrgdhbzc": "",
"roejq": "13.29000000",
"roekcjq": "12.78000000",
"zzcjll": "6.72236954",
"xsjll": "12.12567026",
"xsmll": "59.14427514",
"yszkyysr": "",
"xsjxlyysr": "0.34117014",
"jyxjlyysr": "-0.03163111",
"taxrate": "-0.05405315",
"ld": "1.96548923",
"sd": "1.25480227",
"xjllb": "-0.03991663",
"zcfzl": "49.74447974",
"qycs": "1.98983116",
"cqbl": "0.98983116",
"zzczzts": "487.02037994",
"chzzts": "346.87781673",
"yszkzzts": "100.21805935",
"toazzl": "0.55439158",
"chzzl": "0.77837206",
"yszkzzl": "2.69412521",
"totaldeposits": "",
"grossloans": "",
"ltdrr": "",
"newcapitalader": "",
"hxyjbczl": "",
"nonperloan": "",
"bldkbbl": "",
"nzbje": "",
"total_roi": "",
"net_roi": "",
"earned_premium": "",
"compensate_expense": "",
"surrender_rate_life": "",
"solvency_ar": "",
"jzb": "",
"jzc": "",
"jzbjzc": "",
"zygpgmjzc": "",
"zygdsylzqjzb": "",
"yyfxzb": "",
"jjywfxzb": "",
"zqzyywfxzb": "",
"zqcxywfxzb": "",
"rzrqywfxzb": "",
"epsjbtz": "",
"bpstz": "",
"mgzbgjtz": "",
"mgwfplrtz": "",
"mgjyxjjetz": "",
"roejqtz": "",
"zzcjlltz": "",
"zcfzltz": "",
"report_year": "2025",
"roic": "11.01637880",
"roictz": "",
"nbv_life": "",
"nbv_rate": "",
"nhjz_current_amt": "",
"djd_toi_yoy": "",
"djd_dpnp_yoy": "",
"djd_deductdpnp_yoy": "",
"djd_toi_qoq": "",
"djd_dpnp_qoq": "",
"djd_deductdpnp_qoq": "",
"xsmll_tb": "",
"per_toi": "10.46261703",
"per_oi": "10.46261703",
"per_ebit": "1.21400211",
"staff_num": "1095.00000000",
"avg_toi": "735727.40736986",
"avg_net_profit": "88258.46020091",
"prepaid_accounts_ratio": "20.26189134",
"accounts_payable_tr": "1.44207003",
"fixed_asset_tr": "5.48955667",
"current_asset_tr": "0.70403616",
"prepaid_accounts_tdays": "13.32550824",
"payable_tdays": "187.23085189",
"operate_cycle": "447.08436192",
"guard_speed_ratio": "1.01012825",
"cash_ratio": "0.40219780",
"interest_coverage_ratio": "-18.22795901",
"ca_ta": "77.92344382",
"nca_ta": "22.07655618",
"liquidation_ratio": "199.79488996",
"interest_debt_ratio": "8.25712313",
"fc_liabilities": "40.21978047",
"fcff_forward": "-5562236.51414526",
"fcff_back": "-70763659.90734820",
"ss_oi": "0.84901368",
"ss_ta": "0.42476783",
"nco_op": "-0.26027770",
"nco_netprofit": "-0.26086070",
"nco_fixed": "-0.10552378",
"first_adequacy_ratio": "",
"net_interest_spread": "",
"net_interest_margin": "",
"loan_advances": "",
"non_performing_loan": "",
"overdue_loans": "",
"loan_provision_ratio": "",
"revenue_ratio": "",
"liability": "801011996.47000003",
"capital_provisions_sum": "",
"risk_coverage": "",
"capital_leverage_ratio": "",
"liquidity_coverage_ratio": "",
"net_funding_ratio": "",
"net_capital_liabilities": "",
"net_assets_liabilities": "",
"proprietary_capital": "",
"is_bz": "0"
}
]
}
}
| 参数名称 | 类型 | 必填 | 说明 |
|---|---|---|---|
| code | string | 是 | 股票代码 |
| startdate | string | 否 | 统计开始日期 |
| enddate | string | 否 | 统计结束日期 |
| 参数名称 | 类型 | 说明 |
|---|---|---|
| code | string | 股票代码 (如 688808) |
| name | string | 股票名称 (如 联讯仪器) |
| startdate | string | 统计开始日期 |
| enddate | string | 统计结束日期 |
| report_date | string | 报告日期 |
| report_type | string | 报告类型 |
| accept_deposit_interbank | string | 同业存放款项 |
| accounts_payable | string | 应付账款 |
| accounts_rece | string | 应收账款 |
| accrued_expense | string | 预提费用 |
| advance_receivables | string | 预收账款 |
| agent_trade_security | string | 代理买卖证券款 |
| agent_underwrite_security | string | 代理承销证券款 |
| amortize_cost_finasset | string | 以摊余成本计量的金融资产 |
| amortize_cost_finliab | string | 以摊余成本计量的金融负债 |
| amortize_cost_ncfinasset | string | 以摊余成本计量的非流动金融资产 |
| amortize_cost_ncfinliab | string | 以摊余成本计量的非流动金融负债 |
| appoint_fvtpl_finasset | string | 指定为以公允价值计量且其变动计入当期损益的金融资产 |
| appoint_fvtpl_finliab | string | 指定为以公允价值计量且其变动计入当期损益的金融负债 |
| asset_balance | string | 资产平衡数 |
| asset_other | string | 其他资产 |
| assign_cash_dividend | string | 分配现金股利 |
| available_sale_finasset | string | 可供出售金融资产 |
| bond_payable | string | 应付债券 |
| borrow_fund | string | 拆入资金 |
| buy_resale_finasset | string | 买入返售金融资产 |
| capital_reserve | string | 资本公积 |
| cip | string | 在建工程 |
| consumptive_biological_asset | string | 消耗性生物资产 |
| contract_asset | string | 合同资产 |
| contract_liab | string | 合同负债 |
| convert_diff | string | 折算差额 |
| creditor_invest | string | 债权投资 |
| current_asset_balance | string | 流动资产平衡数 |
| current_asset_other | string | 其他流动资产 |
| current_liab_balance | string | 流动负债平衡数 |
| current_liab_other | string | 其他流动负债 |
| defer_income | string | 递延收益 |
| defer_income_1year | string | 一年内到期的递延收益 |
| defer_tax_asset | string | 递延所得税资产 |
| defer_tax_liab | string | 递延所得税负债 |
| derive_finasset | string | 衍生金融资产 |
| derive_finliab | string | 衍生金融负债 |
| develop_expense | string | 开发支出 |
| div_holdsale_asset | string | 持有待售资产 |
| div_holdsale_liab | string | 持有待售负债 |
| dividend_payable | string | 应付股利 |
| dividend_rece | string | 应收股利 |
| equity_balance | string | 所有者权益平衡数 |
| equity_other | string | 其他权益工具 |
| export_refund_rece | string | 应收出口退税 |
| fee_commission_payable | string | 应付手续费及佣金 |
| fin_fund | string | 财务资金 |
| finance_rece | string | 应收款项融资 |
| fixed_asset | string | 固定资产 |
| fixed_asset_disposal | string | 固定资产清理 |
| fvtoci_finasset | string | 以公允价值计量且其变动计入其他综合收益的金融资产 |
| fvtoci_ncfinasset | string | 以公允价值计量且其变动计入其他综合收益的非流动金融资产 |
| fvtpl_finasset | string | 以公允价值计量且其变动计入当期损益的金融资产 |
| fvtpl_finliab | string | 以公允价值计量且其变动计入当期损益的金融负债 |
| general_risk_reserve | string | 一般风险准备 |
| goodwill | string | 商誉 |
| hold_maturity_invest | string | 持有至到期投资 |
| holdsale_asset | string | 持有待售资产 |
| holdsale_liab | string | 持有待售负债 |
| insurance_contract_reserve | string | 保险合同准备金 |
| intangible_asset | string | 无形资产 |
| interest_payable | string | 应付利息 |
| interest_rece | string | 应收利息 |
| internal_payable | string | 内部应付款 |
| internal_rece | string | 内部应收款 |
| inventory | string | 存货 |
| invest_realestate | string | 投资性房地产 |
| lease_liab | string | 租赁负债 |
| lend_fund | string | 拆出资金 |
| liab_balance | string | 负债平衡数 |
| liab_equity_balance | string | 负债和所有者权益平衡数 |
| liab_equity_other | string | 其他综合收益 |
| liab_other | string | 其他负债 |
| loan_advance | string | 贷款和垫款 |
| loan_pbc | string | 向中央银行借款 |
| long_equity_invest | string | 长期股权投资 |
| long_loan | string | 长期借款 |
| long_payable | string | 长期应付款 |
| long_prepaid_expense | string | 长期待摊费用 |
| long_rece | string | 长期应收款 |
| long_staffsalary_payable | string | 长期应付职工薪酬 |
| minority_equity | string | 少数股东权益 |
| monetaryfunds | string | 货币资金 |
| customer_deposit | string | 客户存款 |
| noncurrent_asset_1year | string | 一年内到期的非流动资产 |
| noncurrent_asset_balance | string | 非流动资产平衡数 |
| noncurrent_asset_other | string | 其他非流动资产 |
| noncurrent_liab_1year | string | 一年内到期的非流动负债 |
| noncurrent_liab_balance | string | 非流动负债平衡数 |
| noncurrent_liab_other | string | 其他非流动负债 |
| note_accounts_payable | string | 应付票据及应付账款 |
| note_accounts_rece | string | 应收票据及应收账款 |
| note_payable | string | 应付票据 |
| note_rece | string | 应收票据 |
| oil_gas_asset | string | 油气资产 |
| other_compre_income | string | 其他综合收益 |
| other_creditor_invest | string | 其他债权投资 |
| other_current_asset | string | 其他流动资产 |
| other_current_liab | string | 其他流动负债 |
| other_equity_invest | string | 其他权益工具投资 |
| other_equity_other | string | 其他权益工具 |
| other_equity_tool | string | 其他权益工具 |
| other_noncurrent_asset | string | 其他非流动资产 |
| other_noncurrent_finasset | string | 其他非流动金融资产 |
| other_noncurrent_liab | string | 其他非流动负债 |
| other_payable | string | 其他应付款 |
| other_rece | string | 其他应收款 |
| parent_equity_balance | string | 母公司所有者权益平衡数 |
| parent_equity_other | string | 母公司其他权益工具 |
| perpetual_bond | string | 永续债 |
| perpetual_bond_paybale | string | 应付永续债 |
| predict_current_liab | string | 预计流动负债 |
| predict_liab | string | 预计负债 |
| preferred_shares | string | 优先股 |
| preferred_shares_paybale | string | 应付优先股 |
| premium_rece | string | 应收保费 |
| prepayment | string | 预付款项 |
| productive_biology_asset | string | 生产性生物资产 |
| project_material | string | 工程物资 |
| rc_reserve_rece | string | 应收分保准备金 |
| reinsure_payable | string | 应付分保账款 |
| reinsure_rece | string | 应收分保账款 |
| sell_repo_finasset | string | 卖出回购金融资产款 |
| settle_excess_reserve | string | 超额存款准备金 |
| share_capital | string | 股本 |
| short_bond_payable | string | 应付短期债券 |
| short_fin_payable | string | 短期应付债券 |
| short_loan | string | 短期借款 |
| special_payable | string | 专项应付款 |
| special_reserve | string | 专项储备 |
| staff_salary_payable | string | 应付职工薪酬 |
| subsidy_rece | string | 应收补贴款 |
| surplus_reserve | string | 盈余公积 |
| tax_payable | string | 应交税费 |
| total_assets | string | 资产总计 |
| total_current_assets | string | 流动资产合计 |
| total_current_liab | string | 流动负债合计 |
| total_equity | string | 所有者权益合计 |
| total_liab_equity | string | 负债和所有者权益总计 |
| total_liabilities | string | 负债合计 |
| total_noncurrent_assets | string | 非流动资产合计 |
| total_noncurrent_liab | string | 非流动负债合计 |
| total_other_payable | string | 其他应付款合计 |
| total_other_rece | string | 其他应收款合计 |
| total_parent_equity | string | 母公司所有者权益合计 |
| trade_finasset | string | 交易性金融资产 |
| trade_finasset_notfvtpl | string | 交易性金融资产(不以公允价值计量且其变动计入当期损益) |
| trade_finliab | string | 交易性金融负债 |
| trade_finliab_notfvtpl | string | 交易性金融负债(不以公允价值计量且其变动计入当期损益) |
| treasury_shares | string | 库存股 |
| unassign_rpofit | string | 未分配利润 |
| unconfirm_invest_loss | string | 未确认投资损失 |
| useright_asset | string | 使用权资产 |
| opinion_type | string | 审计意见类型 |
| osopinion_type | string | 其他审计意见类型 |
| listing_state | string | 上市状态 |
| accept_deposit_interbank_yoy | string | 同业存放款项同比变动 |
| accounts_payable_yoy | string | 应付账款同比变动 |
| accounts_rece_yoy | string | 应收账款同比变动 |
| accrued_expense_yoy | string | 预提费用同比变动 |
| advance_receivables_yoy | string | 预收账款同比变动 |
| agent_trade_security_yoy | string | 代理买卖证券款同比变动 |
| agent_underwrite_security_yoy | string | 代理承销证券款同比变动 |
| amortize_cost_finasset_yoy | string | 以摊余成本计量的金融资产同比变动 |
| amortize_cost_finliab_yoy | string | 以摊余成本计量的金融负债同比变动 |
| amortize_cost_ncfinasset_yoy | string | 以摊余成本计量的非流动金融资产同比变动 |
| amortize_cost_ncfinliab_yoy | string | 以摊余成本计量的非流动金融负债同比变动 |
| appoint_fvtpl_finasset_yoy | string | 指定为以公允价值计量且其变动计入当期损益的金融资产同比变动 |
| appoint_fvtpl_finliab_yoy | string | 指定为以公允价值计量且其变动计入当期损益的金融负债同比变动 |
| asset_balance_yoy | string | 资产平衡数同比变动 |
| asset_other_yoy | string | 其他资产同比变动 |
| assign_cash_dividend_yoy | string | 分配现金股利同比变动 |
| available_sale_finasset_yoy | string | 可供出售金融资产同比变动 |
| bond_payable_yoy | string | 应付债券同比变动 |
| borrow_fund_yoy | string | 拆入资金同比变动 |
| buy_resale_finasset_yoy | string | 买入返售金融资产同比变动 |
| capital_reserve_yoy | string | 资本公积同比变动 |
| cip_yoy | string | 在建工程同比变动 |
| consumptive_biological_asset_yoy | string | 消耗性生物资产同比变动 |
| contract_asset_yoy | string | 合同资产同比变动 |
| contract_liab_yoy | string | 合同负债同比变动 |
| convert_diff_yoy | string | 折算差额同比变动 |
| creditor_invest_yoy | string | 债权投资同比变动 |
| current_asset_balance_yoy | string | 流动资产平衡数同比变动 |
| current_asset_other_yoy | string | 其他流动资产同比变动 |
| current_liab_balance_yoy | string | 流动负债平衡数同比变动 |
| current_liab_other_yoy | string | 其他流动负债同比变动 |
| defer_income_1year_yoy | string | 一年内到期的递延收益同比变动 |
| defer_income_yoy | string | 递延收益同比变动 |
| defer_tax_asset_yoy | string | 递延所得税资产同比变动 |
| defer_tax_liab_yoy | string | 递延所得税负债同比变动 |
| derive_finasset_yoy | string | 衍生金融资产同比变动 |
| derive_finliab_yoy | string | 衍生金融负债同比变动 |
| develop_expense_yoy | string | 开发支出同比变动 |
| div_holdsale_asset_yoy | string | 持有待售资产同比变动 |
| div_holdsale_liab_yoy | string | 持有待售负债同比变动 |
| dividend_payable_yoy | string | 应付股利同比变动 |
| dividend_rece_yoy | string | 应收股利同比变动 |
| equity_balance_yoy | string | 所有者权益平衡数同比变动 |
| equity_other_yoy | string | 其他权益工具同比变动 |
| export_refund_rece_yoy | string | 应收出口退税同比变动 |
| fee_commission_payable_yoy | string | 应付手续费及佣金同比变动 |
| fin_fund_yoy | string | 财务资金同比变动 |
| finance_rece_yoy | string | 应收款项融资同比变动 |
| fixed_asset_disposal_yoy | string | 固定资产清理同比变动 |
| fixed_asset_yoy | string | 固定资产同比变动 |
| fvtoci_finasset_yoy | string | 以公允价值计量且其变动计入其他综合收益的金融资产同比变动 |
| fvtoci_ncfinasset_yoy | string | 以公允价值计量且其变动计入其他综合收益的非流动金融资产同比变动 |
| fvtpl_finasset_yoy | string | 以公允价值计量且其变动计入当期损益的金融资产同比变动 |
| fvtpl_finliab_yoy | string | 以公允价值计量且其变动计入当期损益的金融负债同比变动 |
| general_risk_reserve_yoy | string | 一般风险准备同比变动 |
| goodwill_yoy | string | 商誉同比变动 |
| hold_maturity_invest_yoy | string | 持有至到期投资同比变动 |
| holdsale_asset_yoy | string | 持有待售资产同比变动 |
| holdsale_liab_yoy | string | 持有待售负债同比变动 |
| insurance_contract_reserve_yoy | string | 保险合同准备金同比变动 |
| intangible_asset_yoy | string | 无形资产同比变动 |
| interest_payable_yoy | string | 应付利息同比变动 |
| interest_rece_yoy | string | 应收利息同比变动 |
| internal_payable_yoy | string | 内部应付款同比变动 |
| internal_rece_yoy | string | 内部应收款同比变动 |
| inventory_yoy | string | 存货同比变动 |
| invest_realestate_yoy | string | 投资性房地产同比变动 |
| lease_liab_yoy | string | 租赁负债同比变动 |
| lend_fund_yoy | string | 拆出资金同比变动 |
| liab_balance_yoy | string | 负债平衡数同比变动 |
| liab_equity_balance_yoy | string | 负债和所有者权益平衡数同比变动 |
| liab_equity_other_yoy | string | 其他综合收益同比变动 |
| liab_other_yoy | string | 其他负债同比变动 |
| loan_advance_yoy | string | 贷款和垫款同比变动 |
| loan_pbc_yoy | string | 向中央银行借款同比变动 |
| long_equity_invest_yoy | string | 长期股权投资同比变动 |
| long_loan_yoy | string | 长期借款同比变动 |
| long_payable_yoy | string | 长期应付款同比变动 |
| long_prepaid_expense_yoy | string | 长期待摊费用同比变动 |
| long_rece_yoy | string | 长期应收款同比变动 |
| long_staffsalary_payable_yoy | string | 长期应付职工薪酬同比变动 |
| minority_equity_yoy | string | 少数股东权益同比变动 |
| monetaryfunds_yoy | string | 货币资金同比变动 |
| noncurrent_asset_1year_yoy | string | 一年内到期的非流动资产同比变动 |
| noncurrent_asset_balance_yoy | string | 非流动资产平衡数同比变动 |
| noncurrent_asset_other_yoy | string | 其他非流动资产同比变动 |
| noncurrent_liab_1year_yoy | string | 一年内到期的非流动负债同比变动 |
| noncurrent_liab_balance_yoy | string | 非流动负债平衡数同比变动 |
| noncurrent_liab_other_yoy | string | 其他非流动负债同比变动 |
| note_accounts_payable_yoy | string | 应付票据及应付账款同比变动 |
| note_accounts_rece_yoy | string | 应收票据及应收账款同比变动 |
| note_payable_yoy | string | 应付票据同比变动 |
| note_rece_yoy | string | 应收票据同比变动 |
| oil_gas_asset_yoy | string | 油气资产同比变动 |
| other_compre_income_yoy | string | 其他综合收益同比变动 |
| other_creditor_invest_yoy | string | 其他债权投资同比变动 |
| other_current_asset_yoy | string | 其他流动资产同比变动 |
| other_current_liab_yoy | string | 其他流动负债同比变动 |
| other_equity_invest_yoy | string | 其他权益工具投资同比变动 |
| other_equity_other_yoy | string | 其他权益工具同比变动 |
| other_equity_tool_yoy | string | 其他权益工具同比变动 |
| other_noncurrent_asset_yoy | string | 其他非流动资产同比变动 |
| other_noncurrent_finasset_yoy | string | 其他非流动金融资产同比变动 |
| other_noncurrent_liab_yoy | string | 其他非流动负债同比变动 |
| other_payable_yoy | string | 其他应付款同比变动 |
| other_rece_yoy | string | 其他应收款同比变动 |
| parent_equity_balance_yoy | string | 母公司所有者权益平衡数同比变动 |
| parent_equity_other_yoy | string | 母公司其他权益工具同比变动 |
| perpetual_bond_paybale_yoy | string | 应付永续债同比变动 |
| perpetual_bond_yoy | string | 永续债同比变动 |
| predict_current_liab_yoy | string | 预计流动负债同比变动 |
| predict_liab_yoy | string | 预计负债同比变动 |
| preferred_shares_paybale_yoy | string | 应付优先股同比变动 |
| preferred_shares_yoy | string | 优先股同比变动 |
| premium_rece_yoy | string | 应收保费同比变动 |
| prepayment_yoy | string | 预付款项同比变动 |
| productive_biology_asset_yoy | string | 生产性生物资产同比变动 |
| project_material_yoy | string | 工程物资同比变动 |
| rc_reserve_rece_yoy | string | 应收分保准备金同比变动 |
| reinsure_payable_yoy | string | 应付分保账款同比变动 |
| reinsure_rece_yoy | string | 应收分保账款同比变动 |
| sell_repo_finasset_yoy | string | 卖出回购金融资产款同比变动 |
| settle_excess_reserve_yoy | string | 超额存款准备金同比变动 |
| share_capital_yoy | string | 股本同比变动 |
| short_bond_payable_yoy | string | 应付短期债券同比变动 |
| short_fin_payable_yoy | string | 短期应付债券同比变动 |
| short_loan_yoy | string | 短期借款同比变动 |
| special_payable_yoy | string | 专项应付款同比变动 |
| special_reserve_yoy | string | 专项储备同比变动 |
| staff_salary_payable_yoy | string | 应付职工薪酬同比变动 |
| subsidy_rece_yoy | string | 应收补贴款同比变动 |
| surplus_reserve_yoy | string | 盈余公积同比变动 |
| tax_payable_yoy | string | 应交税费同比变动 |
| total_assets_yoy | string | 资产总计同比变动 |
| total_current_assets_yoy | string | 流动资产合计同比变动 |
| total_current_liab_yoy | string | 流动负债合计同比变动 |
| total_equity_yoy | string | 所有者权益合计同比变动 |
| total_liab_equity_yoy | string | 负债和所有者权益总计同比变动 |
| total_liabilities_yoy | string | 负债合计同比变动 |
| total_noncurrent_assets_yoy | string | 非流动资产合计同比变动 |
| total_noncurrent_liab_yoy | string | 非流动负债合计同比变动 |
| total_other_payable_yoy | string | 其他应付款合计同比变动 |
| total_other_rece_yoy | string | 其他应收款合计同比变动 |
| total_parent_equity_yoy | string | 母公司所有者权益合计同比变动 |
| trade_finasset_notfvtpl_yoy | string | 交易性金融资产(不以公允价值计量且其变动计入当期损益)同比变动 |
| trade_finasset_yoy | string | 交易性金融资产同比变动 |
| trade_finliab_notfvtpl_yoy | string | 交易性金融负债(不以公允价值计量且其变动计入当期损益)同比变动 |
| trade_finliab_yoy | string | 交易性金融负债同比变动 |
| treasury_shares_yoy | string | 库存股同比变动 |
| unassign_rpofit_yoy | string | 未分配利润同比变动 |
| unconfirm_invest_loss_yoy | string | 未确认投资损失同比变动 |
| useright_asset_yoy | string | 使用权资产同比变动 |
{
"status": 0,
"msg": "ok",
"result": {
"code": "688808",
"name": "联讯仪器",
"startdate": "2025-06-09",
"enddate": "2026-06-09",
"list": [
{
"report_date": "2026-03-31",
"report_type": "一季报",
"main": {
"indicator": "按报告期",
"secucode": "688808.SH",
"org_code": "10000440894.00000000",
"org_type": "通用",
"report_date": "2026-03-31",
"report_type": "一季报",
"report_date_name": "2026一季报",
"security_type_code": "58001001.00000000",
"notice_date": "2026-04-29",
"update_date": "2026-04-29",
"currency": "CNY",
"accept_deposit_interbank": "",
"accounts_payable": "486944931.63999999",
"accounts_rece": "563214690.96000004",
"accrued_expense": "",
"advance_receivables": "",
"agent_trade_security": "",
"agent_underwrite_security": "",
"amortize_cost_finasset": "",
"amortize_cost_finliab": "",
"amortize_cost_ncfinasset": "",
"amortize_cost_ncfinliab": "",
"appoint_fvtpl_finasset": "",
"appoint_fvtpl_finliab": "",
"asset_balance": "0.00000000",
"asset_other": "",
"assign_cash_dividend": "",
"available_sale_finasset": "",
"bond_payable": "",
"borrow_fund": "",
"buy_resale_finasset": "",
"capital_reserve": "616585753.24000001",
"cip": "8504261.10000000",
"consumptive_biological_asset": "",
"contract_asset": "30312468.01000000",
"contract_liab": "210128666.03000000",
"convert_diff": "",
"creditor_invest": "",
"current_asset_balance": "0.00000000",
"current_asset_other": "",
"current_liab_balance": "0.00000000",
"current_liab_other": "",
"defer_income": "90885850.00000000",
"defer_income_1year": "",
"defer_tax_asset": "46200.84000000",
"defer_tax_liab": "290260.18000000",
"derive_finasset": "",
"derive_finliab": "",
"develop_expense": "",
"div_holdsale_asset": "",
"div_holdsale_liab": "",
"dividend_payable": "",
"dividend_rece": "",
"equity_balance": "0.00000000",
"equity_other": "",
"export_refund_rece": "",
"fee_commission_payable": "",
"fin_fund": "",
"finance_rece": "4495895.77000000",
"fixed_asset": "255931858.81000000",
"fixed_asset_disposal": "",
"fvtoci_finasset": "",
"fvtoci_ncfinasset": "",
"fvtpl_finasset": "",
"fvtpl_finliab": "",
"general_risk_reserve": "",
"goodwill": "258106.10000000",
"hold_maturity_invest": "",
"holdsale_asset": "",
"holdsale_liab": "",
"insurance_contract_reserve": "",
"intangible_asset": "11252714.23000000",
"interest_payable": "",
"interest_rece": "663638.03000000",
"internal_payable": "",
"internal_rece": "",
"inventory": "751480011.36000001",
"invest_realestate": "",
"lease_liab": "35678968.66000000",
"lend_fund": "",
"liab_balance": "0.00000000",
"liab_equity_balance": "",
"liab_equity_other": "",
"liab_other": "",
"loan_advance": "",
"loan_pbc": "",
"long_equity_invest": "24684078.36000000",
"long_loan": "73088680.20000000",
"long_payable": "",
"long_prepaid_expense": "44655067.95000000",
"long_rece": "133643.83000000",
"long_staffsalary_payable": "",
"minority_equity": "-427840.41000000",
"monetaryfunds": "462567811.08999997",
"customer_deposit": null,
"noncurrent_asset_1year": "482580.75000000",
"noncurrent_asset_balance": "0.00000000",
"noncurrent_asset_other": "",
"noncurrent_liab_1year": "33188709.35000000",
"noncurrent_liab_balance": "0.00000000",
"noncurrent_liab_other": "",
"note_accounts_payable": "705360441.22000003",
"note_accounts_rece": "563599970.34000003",
"note_payable": "218415509.58000001",
"note_rece": "385279.38000000",
"oil_gas_asset": "",
"other_compre_income": "-1039350.00000000",
"other_creditor_invest": "",
"other_current_asset": "36694085.25000000",
"other_current_liab": "27675033.72000000",
"other_equity_invest": "",
"other_equity_other": "",
"other_equity_tool": "",
"other_noncurrent_asset": "4224363.50000000",
"other_noncurrent_finasset": "",
"other_noncurrent_liab": "",
"other_payable": "",
"other_rece": "",
"parent_equity_balance": "0.00000000",
"parent_equity_other": "",
"perpetual_bond": "",
"perpetual_bond_paybale": "",
"predict_current_liab": "",
"predict_liab": "15069945.49000000",
"preferred_shares": "",
"preferred_shares_paybale": "",
"premium_rece": "",
"prepayment": "35926142.27000000",
"productive_biology_asset": "",
"project_material": "",
"rc_reserve_rece": "",
"reinsure_payable": "",
"reinsure_rece": "",
"sell_repo_finasset": "",
"settle_excess_reserve": "",
"share_capital": "77000000.00000000",
"short_bond_payable": "",
"short_fin_payable": "",
"short_loan": "30057073.97000000",
"special_payable": "",
"special_reserve": "",
"staff_salary_payable": "37974455.12000000",
"subsidy_rece": "",
"surplus_reserve": "26625996.04000000",
"tax_payable": "4819868.66000000",
"total_assets": "2296797356.67000008",
"total_current_assets": "1906659562.16000009",
"total_current_liab": "1056125447.28999996",
"total_equity": "1025658204.85000002",
"total_liab_equity": "2296797356.67000008",
"total_liabilities": "1271139151.81999993",
"total_noncurrent_assets": "390137794.50999999",
"total_noncurrent_liab": "215013704.53000000",
"total_other_payable": "6921199.22000000",
"total_other_rece": "21100597.32000000",
"total_parent_equity": "1026086045.25999999",
"trade_finasset": "",
"trade_finasset_notfvtpl": "",
"trade_finliab": "",
"trade_finliab_notfvtpl": "",
"treasury_shares": "",
"unassign_rpofit": "306913645.98000002",
"unconfirm_invest_loss": "",
"useright_asset": "40447499.79000000",
"opinion_type": "",
"osopinion_type": "",
"listing_state": "0.00000000"
},
"yoy": {
"indicator": "按报告期同比",
"secucode": "688808.SH",
"org_code": "10000440894.00000000",
"org_type": "通用",
"report_date": "2026-03-31",
"report_type": "一季报",
"report_date_name": "2026一季报",
"security_type_code": "58001001.00000000",
"notice_date": "2026-04-29",
"update_date": "2026-04-29",
"currency": "CNY",
"accept_deposit_interbank_yoy": "0.00000000",
"accounts_payable_yoy": "146.95214596",
"accounts_rece_yoy": "101.38488756",
"accrued_expense_yoy": "0.00000000",
"advance_receivables_yoy": "0.00000000",
"agent_trade_security_yoy": "0.00000000",
"agent_underwrite_security_yoy": "0.00000000",
"amortize_cost_finasset_yoy": "0.00000000",
"amortize_cost_finliab_yoy": "0.00000000",
"amortize_cost_ncfinasset_yoy": "0.00000000",
"amortize_cost_ncfinliab_yoy": "0.00000000",
"appoint_fvtpl_finasset_yoy": "0.00000000",
"appoint_fvtpl_finliab_yoy": "0.00000000",
"asset_balance_yoy": "0.00000000",
"asset_other_yoy": "0.00000000",
"assign_cash_dividend_yoy": "0.00000000",
"available_sale_finasset_yoy": "0.00000000",
"bond_payable_yoy": "0.00000000",
"borrow_fund_yoy": "0.00000000",
"buy_resale_finasset_yoy": "0.00000000",
"capital_reserve_yoy": "7.99500300",
"cip_yoy": "-94.63566617",
"consumptive_biological_asset_yoy": "0.00000000",
"contract_asset_yoy": "2.10849586",
"contract_liab_yoy": "39.88105296",
"convert_diff_yoy": "0.00000000",
"creditor_invest_yoy": "0.00000000",
"current_asset_balance_yoy": "0.00000000",
"current_asset_other_yoy": "0.00000000",
"current_liab_balance_yoy": "0.00000000",
"current_liab_other_yoy": "0.00000000",
"defer_income_1year_yoy": "0.00000000",
"defer_income_yoy": "137.64672198",
"defer_tax_asset_yoy": "34.78816325",
"defer_tax_liab_yoy": "221.75190511",
"derive_finasset_yoy": "0.00000000",
"derive_finliab_yoy": "0.00000000",
"develop_expense_yoy": "0.00000000",
"div_holdsale_asset_yoy": "0.00000000",
"div_holdsale_liab_yoy": "0.00000000",
"dividend_payable_yoy": "0.00000000",
"dividend_rece_yoy": "0.00000000",
"equity_balance_yoy": "0.00000000",
"equity_other_yoy": "0.00000000",
"export_refund_rece_yoy": "0.00000000",
"fee_commission_payable_yoy": "0.00000000",
"fin_fund_yoy": "0.00000000",
"finance_rece_yoy": "-50.12644493",
"fixed_asset_disposal_yoy": "0.00000000",
"fixed_asset_yoy": "381.55548345",
"fvtoci_finasset_yoy": "0.00000000",
"fvtoci_ncfinasset_yoy": "0.00000000",
"fvtpl_finasset_yoy": "0.00000000",
"fvtpl_finliab_yoy": "0.00000000",
"general_risk_reserve_yoy": "0.00000000",
"goodwill_yoy": "0.00000000",
"hold_maturity_invest_yoy": "0.00000000",
"holdsale_asset_yoy": "0.00000000",
"holdsale_liab_yoy": "0.00000000",
"insurance_contract_reserve_yoy": "0.00000000",
"intangible_asset_yoy": "57.21805338",
"interest_payable_yoy": "0.00000000",
"interest_rece_yoy": "0.00000000",
"internal_payable_yoy": "0.00000000",
"internal_rece_yoy": "0.00000000",
"inventory_yoy": "84.87013214",
"invest_realestate_yoy": "0.00000000",
"lease_liab_yoy": "682.18413173",
"lend_fund_yoy": "0.00000000",
"liab_balance_yoy": "0.00000000",
"liab_equity_balance_yoy": "0.00000000",
"liab_equity_other_yoy": "0.00000000",
"liab_other_yoy": "0.00000000",
"loan_advance_yoy": "0.00000000",
"loan_pbc_yoy": "0.00000000",
"long_equity_invest_yoy": "24.23004791",
"long_loan_yoy": "-8.50682008",
"long_payable_yoy": "0.00000000",
"long_prepaid_expense_yoy": "224.08919182",
"long_rece_yoy": "-70.70784982",
"long_staffsalary_payable_yoy": "0.00000000",
"minority_equity_yoy": "22.00233686",
"monetaryfunds_yoy": "82.32268990",
"noncurrent_asset_1year_yoy": "-21.06192564",
"noncurrent_asset_balance_yoy": "0.00000000",
"noncurrent_asset_other_yoy": "0.00000000",
"noncurrent_liab_1year_yoy": "309.99963981",
"noncurrent_liab_balance_yoy": "0.00000000",
"noncurrent_liab_other_yoy": "0.00000000",
"note_accounts_payable_yoy": "101.16804878",
"note_accounts_rece_yoy": "95.34166391",
"note_payable_yoy": "42.33609487",
"note_rece_yoy": "-95.64622649",
"oil_gas_asset_yoy": "0.00000000",
"other_compre_income_yoy": "-564.16694256",
"other_creditor_invest_yoy": "0.00000000",
"other_current_asset_yoy": "67.73999903",
"other_current_liab_yoy": "157.01187052",
"other_equity_invest_yoy": "0.00000000",
"other_equity_other_yoy": "0.00000000",
"other_equity_tool_yoy": "0.00000000",
"other_noncurrent_asset_yoy": "94.91364832",
"other_noncurrent_finasset_yoy": "0.00000000",
"other_noncurrent_liab_yoy": "0.00000000",
"other_payable_yoy": "0.00000000",
"other_rece_yoy": "0.00000000",
"parent_equity_balance_yoy": "0.00000000",
"parent_equity_other_yoy": "0.00000000",
"perpetual_bond_paybale_yoy": "0.00000000",
"perpetual_bond_yoy": "0.00000000",
"predict_current_liab_yoy": "0.00000000",
"predict_liab_yoy": "45.99379869",
"preferred_shares_paybale_yoy": "0.00000000",
"preferred_shares_yoy": "0.00000000",
"premium_rece_yoy": "0.00000000",
"prepayment_yoy": "59.98031559",
"productive_biology_asset_yoy": "0.00000000",
"project_material_yoy": "0.00000000",
"rc_reserve_rece_yoy": "0.00000000",
"reinsure_payable_yoy": "0.00000000",
"reinsure_rece_yoy": "0.00000000",
"sell_repo_finasset_yoy": "0.00000000",
"settle_excess_reserve_yoy": "0.00000000",
"share_capital_yoy": "0.00000000",
"short_bond_payable_yoy": "0.00000000",
"short_fin_payable_yoy": "0.00000000",
"short_loan_yoy": "-38.47336691",
"special_payable_yoy": "0.00000000",
"special_reserve_yoy": "0.00000000",
"staff_salary_payable_yoy": "63.76864495",
"subsidy_rece_yoy": "0.00000000",
"surplus_reserve_yoy": "419.93452808",
"tax_payable_yoy": "-36.02453275",
"total_assets_yoy": "58.97311466",
"total_current_assets_yoy": "69.51833600",
"total_current_liab_yoy": "74.82022218",
"total_equity_yoy": "44.95958691",
"total_liab_equity_yoy": "58.97311466",
"total_liabilities_yoy": "72.42255372",
"total_noncurrent_assets_yoy": "21.91055180",
"total_noncurrent_liab_yoy": "61.54009184",
"total_other_payable_yoy": "43.23237545",
"total_other_rece_yoy": "72.35624644",
"total_parent_equity_yoy": "44.90771457",
"trade_finasset_notfvtpl_yoy": "0.00000000",
"trade_finasset_yoy": "0.00000000",
"trade_finliab_notfvtpl_yoy": "0.00000000",
"trade_finliab_yoy": "0.00000000",
"treasury_shares_yoy": "0.00000000",
"unassign_rpofit_yoy": "456.07826598",
"unconfirm_invest_loss_yoy": "0.00000000",
"useright_asset_yoy": "262.01911043"
}
}
]
}
}
| 参数名称 | 类型 | 必填 | 说明 |
|---|---|---|---|
| code | string | 是 | 股票代码 |
| startdate | string | 否 | 统计开始日期 |
| enddate | string | 否 | 统计结束日期 |
| 参数名称 | 类型 | 说明 |
|---|---|---|
| code | string | 股票代码 (如 688808) |
| name | string | 股票名称 (如 联讯仪器) |
| startdate | string | 统计开始日期 |
| enddate | string | 统计结束日期 |
| report_date | string | 报告日期 |
| report_type | string | 报告类型 |
| total_operate_income | string | 营业总收入 |
| operate_income | string | 营业收入 |
| interest_income | string | 利息收入 |
| earned_premium | string | 已赚保费 |
| fee_commission_income | string | 手续费及佣金收入 |
| other_business_income | string | 其他业务收入 |
| toi_other | string | 其他营业收入 |
| total_operate_cost | string | 营业总成本 |
| operate_cost | string | 营业成本 |
| interest_expense | string | 利息支出 |
| fee_commission_expense | string | 手续费及佣金支出 |
| research_expense | string | 研发费用 |
| surrender_value | string | 退保金 |
| net_compensate_expense | string | 赔付支出净额 |
| net_contract_reserve | string | 提取保险合同准备金净额 |
| policy_bonus_expense | string | 保单红利支出 |
| reinsure_expense | string | 分保费用 |
| other_business_cost | string | 其他业务成本 |
| operate_tax_add | string | 税金及附加 |
| sale_expense | string | 销售费用 |
| manage_expense | string | 管理费用 |
| me_research_expense | string | 管理口径研发费用 |
| finance_expense | string | 财务费用 |
| fe_interest_expense | string | 财务费用-利息支出 |
| fe_interest_income | string | 财务费用-利息收入 |
| asset_impairment_loss | string | 资产减值损失 |
| credit_impairment_loss | string | 信用减值损失 |
| toc_other | string | 其他营业成本 |
| fairvalue_change_income | string | 公允价值变动收益 |
| invest_income | string | 投资收益 |
| invest_joint_income | string | 对联营企业和合营企业的投资收益 |
| net_exposure_income | string | 净敞口套期收益 |
| exchange_income | string | 汇兑收益 |
| asset_disposal_income | string | 资产处置收益 |
| asset_impairment_income | string | 资产减值收益 |
| credit_impairment_income | string | 信用减值收益 |
| other_income | string | 其他收益 |
| operate_profit_other | string | 其他营业利润 |
| operate_profit_balance | string | 营业利润平衡项 |
| operate_profit | string | 营业利润 |
| nonbusiness_income | string | 营业外收入 |
| noncurrent_disposal_income | string | 非流动资产处置收入 |
| nonbusiness_expense | string | 营业外支出 |
| noncurrent_disposal_loss | string | 非流动资产处置损失 |
| effect_tp_other | string | 影响利润总额的其他项 |
| total_profit_balance | string | 利润总额平衡项 |
| total_profit | string | 利润总额 |
| income_tax | string | 所得税费用 |
| effect_netprofit_other | string | 影响净利润的其他项 |
| effect_netprofit_balance | string | 净利润平衡项 |
| unconfirm_invest_loss | string | 未确认投资损失 |
| netprofit | string | 净利润 |
| precombine_profit | string | 合并前利润 |
| continued_netprofit | string | 持续经营净利润 |
| discontinued_netprofit | string | 终止经营净利润 |
| parent_netprofit | string | 归属于母公司所有者的净利润 |
| minority_interest | string | 少数股东损益 |
| deduct_parent_netprofit | string | 扣除非经常性损益后的归属母公司净利润 |
| netprofit_other | string | 净利润其他项 |
| netprofit_balance | string | 净利润平衡项 |
| basic_eps | string | 基本每股收益 |
| diluted_eps | string | 稀释每股收益 |
| other_compre_income | string | 其他综合收益 |
| parent_oci | string | 归属于母公司所有者的其他综合收益 |
| minority_oci | string | 归属于少数股东的其他综合收益 |
| parent_oci_other | string | 母公司其他综合收益其他项 |
| parent_oci_balance | string | 母公司其他综合收益平衡项 |
| unable_oci | string | 不能重分类进损益的其他综合收益 |
| creditrisk_fairvalue_change | string | 信用风险公允价值变动 |
| otherright_fairvalue_change | string | 其他权益工具投资公允价值变动 |
| setup_profit_change | string | 设立利润变动 |
| rightlaw_unable_oci | string | 权益法下不能转损益的其他综合收益 |
| unable_oci_other | string | 不能重分类进损益的其他综合收益其他项 |
| unable_oci_balance | string | 不能重分类进损益的其他综合收益平衡项 |
| able_oci | string | 将重分类进损益的其他综合收益 |
| rightlaw_able_oci | string | 权益法下可转损益的其他综合收益 |
| afa_fairvalue_change | string | 可供出售金融资产公允价值变动 |
| hmi_afa | string | 持有至到期投资重分类为可供出售金融资产损益 |
| cashflow_hedge_valid | string | 现金流量套期储备 |
| creditor_fairvalue_change | string | 债权投资公允价值变动 |
| creditor_impairment_reserve | string | 债权投资信用减值准备 |
| finance_oci_amt | string | 外币财务报表折算差额 |
| convert_diff | string | 外币报表折算差额 |
| able_oci_other | string | 可重分类进损益的其他综合收益其他项 |
| able_oci_balance | string | 可重分类进损益的其他综合收益平衡项 |
| oci_other | string | 其他综合收益其他项 |
| oci_balance | string | 其他综合收益平衡项 |
| total_compre_income | string | 综合收益总额 |
| parent_tci | string | 归属于母公司所有者的综合收益总额 |
| minority_tci | string | 归属于少数股东的综合收益总额 |
| precombine_tci | string | 合并前综合收益 |
| effect_tci_balance | string | 综合收益平衡项 |
| tci_other | string | 综合收益其他项 |
| tci_balance | string | 综合收益平衡项 |
| acf_end_income | string | 年末现金流相关指标 |
| opinion_type | string | 审计意见类型 |
| total_operate_income_yoy | string | 营业总收入同比增长率 |
| operate_income_yoy | string | 营业收入同比增长率 |
| interest_income_yoy | string | 利息收入同比增长率 |
| earned_premium_yoy | string | 已赚保费同比增长率 |
| fee_commission_income_yoy | string | 手续费及佣金收入同比增长率 |
| other_business_income_yoy | string | 其他业务收入同比增长率 |
| toi_other_yoy | string | 其他营业收入同比增长率 |
| total_operate_cost_yoy | string | 营业总成本同比增长率 |
| operate_cost_yoy | string | 营业成本同比增长率 |
| interest_expense_yoy | string | 利息支出同比增长率 |
| fee_commission_expense_yoy | string | 手续费及佣金支出同比增长率 |
| research_expense_yoy | string | 研发费用同比增长率 |
| surrender_value_yoy | string | 退保金同比增长率 |
| net_compensate_expense_yoy | string | 赔付支出净额同比增长率 |
| net_contract_reserve_yoy | string | 提取保险合同准备金净额同比增长率 |
| policy_bonus_expense_yoy | string | 保单红利支出同比增长率 |
| reinsure_expense_yoy | string | 分保费用同比增长率 |
| other_business_cost_yoy | string | 其他业务成本同比增长率 |
| operate_tax_add_yoy | string | 税金及附加同比增长率 |
| sale_expense_yoy | string | 销售费用同比增长率 |
| manage_expense_yoy | string | 管理费用同比增长率 |
| me_research_expense_yoy | string | 管理口径研发费用同比增长率 |
| finance_expense_yoy | string | 财务费用同比增长率 |
| fe_interest_expense_yoy | string | 财务费用-利息支出同比增长率 |
| fe_interest_income_yoy | string | 财务费用-利息收入同比增长率 |
| asset_impairment_loss_yoy | string | 资产减值损失同比增长率 |
| credit_impairment_loss_yoy | string | 信用减值损失同比增长率 |
| toc_other_yoy | string | 其他营业成本同比增长率 |
| fairvalue_change_income_yoy | string | 公允价值变动收益同比增长率 |
| invest_income_yoy | string | 投资收益同比增长率 |
| invest_joint_income_yoy | string | 对联营企业和合营企业的投资收益同比增长率 |
| net_exposure_income_yoy | string | 净敞口套期收益同比增长率 |
| exchange_income_yoy | string | 汇兑收益同比增长率 |
| asset_disposal_income_yoy | string | 资产处置收益同比增长率 |
| asset_impairment_income_yoy | string | 资产减值收益同比增长率 |
| credit_impairment_income_yoy | string | 信用减值收益同比增长率 |
| other_income_yoy | string | 其他收益同比增长率 |
| operate_profit_other_yoy | string | 其他营业利润同比增长率 |
| operate_profit_balance_yoy | string | 营业利润平衡项同比增长率 |
| operate_profit_yoy | string | 营业利润同比增长率 |
| nonbusiness_income_yoy | string | 营业外收入同比增长率 |
| noncurrent_disposal_income_yoy | string | 非流动资产处置收入同比增长率 |
| nonbusiness_expense_yoy | string | 营业外支出同比增长率 |
| noncurrent_disposal_loss_yoy | string | 非流动资产处置损失同比增长率 |
| effect_tp_other_yoy | string | 影响利润总额的其他项同比增长率 |
| total_profit_balance_yoy | string | 利润总额平衡项同比增长率 |
| total_profit_yoy | string | 利润总额同比增长率 |
| income_tax_yoy | string | 所得税费用同比增长率 |
| effect_netprofit_other_yoy | string | 影响净利润的其他项同比增长率 |
| effect_netprofit_balance_yoy | string | 净利润平衡项同比增长率 |
| unconfirm_invest_loss_yoy | string | 未确认投资损失同比增长率 |
| netprofit_yoy | string | 净利润同比增长率 |
| precombine_profit_yoy | string | 合并前利润同比增长率 |
| continued_netprofit_yoy | string | 持续经营净利润同比增长率 |
| discontinued_netprofit_yoy | string | 终止经营净利润同比增长率 |
| parent_netprofit_yoy | string | 归属于母公司所有者的净利润同比增长率 |
| minority_interest_yoy | string | 少数股东损益同比增长率 |
| deduct_parent_netprofit_yoy | string | 扣除非经常性损益后的归属母公司净利润同比增长率 |
| netprofit_other_yoy | string | 净利润其他项同比增长率 |
| netprofit_balance_yoy | string | 净利润平衡项同比增长率 |
| basic_eps_yoy | string | 基本每股收益同比增长率 |
| diluted_eps_yoy | string | 稀释每股收益同比增长率 |
| other_compre_income_yoy | string | 其他综合收益同比增长率 |
| parent_oci_yoy | string | 归属于母公司所有者的其他综合收益同比增长率 |
| minority_oci_yoy | string | 归属于少数股东的其他综合收益同比增长率 |
| parent_oci_other_yoy | string | 母公司其他综合收益其他项同比增长率 |
| parent_oci_balance_yoy | string | 母公司其他综合收益平衡项同比增长率 |
| unable_oci_yoy | string | 不能重分类进损益的其他综合收益同比增长率 |
| creditrisk_fairvalue_change_yoy | string | 信用风险公允价值变动同比增长率 |
| otherright_fairvalue_change_yoy | string | 其他权益工具投资公允价值变动同比增长率 |
| setup_profit_change_yoy | string | 设立利润变动同比增长率 |
| rightlaw_unable_oci_yoy | string | 权益法下不能转损益的其他综合收益同比增长率 |
| unable_oci_other_yoy | string | 不能重分类进损益的其他综合收益其他项同比增长率 |
| unable_oci_balance_yoy | string | 不能重分类进损益的其他综合收益平衡项同比增长率 |
| able_oci_yoy | string | 将重分类进损益的其他综合收益同比增长率 |
| rightlaw_able_oci_yoy | string | 权益法下可转损益的其他综合收益同比增长率 |
| afa_fairvalue_change_yoy | string | 可供出售金融资产公允价值变动同比增长率 |
| hmi_afa_yoy | string | 持有至到期投资重分类为可供出售金融资产损益同比增长率 |
| cashflow_hedge_valid_yoy | string | 现金流量套期储备同比增长率 |
| creditor_fairvalue_change_yoy | string | 债权投资公允价值变动同比增长率 |
| creditor_impairment_reserve_yoy | string | 债权投资信用减值准备同比增长率 |
| finance_oci_amt_yoy | string | 外币财务报表折算差额同比增长率 |
| convert_diff_yoy | string | 外币报表折算差额同比增长率 |
| able_oci_other_yoy | string | 可重分类进损益的其他综合收益其他项同比增长率 |
| able_oci_balance_yoy | string | 可重分类进损益的其他综合收益平衡项同比增长率 |
| oci_other_yoy | string | 其他综合收益其他项同比增长率 |
| oci_balance_yoy | string | 其他综合收益平衡项同比增长率 |
| total_compre_income_yoy | string | 综合收益总额同比增长率 |
| parent_tci_yoy | string | 归属于母公司所有者的综合收益总额同比增长率 |
| minority_tci_yoy | string | 归属于少数股东的综合收益总额同比增长率 |
| precombine_tci_yoy | string | 合并前综合收益同比增长率 |
| effect_tci_balance_yoy | string | 综合收益平衡项同比增长率 |
| tci_other_yoy | string | 综合收益其他项同比增长率 |
| tci_balance_yoy | string | 综合收益平衡项同比增长率 |
| acf_end_income_yoy | string | 年末现金流相关指标同比增长率 |
{
"status": 0,
"msg": "ok",
"result": {
"code": "688808",
"name": "联讯仪器",
"startdate": "2025-06-09",
"enddate": "2026-06-09",
"list": [
{
"report_date": "2026-03-31",
"report_type": "一季报",
"main": {
"indicator": "按报告期",
"secucode": "688808.SH",
"org_code": "10000440894.00000000",
"org_type": "通用",
"report_date": "2026-03-31",
"report_type": "一季报",
"report_date_name": "2026一季报",
"security_type_code": "58001001.00000000",
"notice_date": "2026-04-29",
"update_date": "2026-04-29",
"currency": "CNY",
"total_operate_income": "487720104.79000002",
"operate_income": "487720104.79000002",
"interest_income": "",
"earned_premium": "",
"fee_commission_income": "",
"other_business_income": "",
"toi_other": "",
"total_operate_cost": "354778342.00000000",
"operate_cost": "162134026.83000001",
"interest_expense": "",
"fee_commission_expense": "",
"research_expense": "118612502.52000000",
"surrender_value": "",
"net_compensate_expense": "",
"net_contract_reserve": "",
"policy_bonus_expense": "",
"reinsure_expense": "",
"other_business_cost": "",
"operate_tax_add": "2136819.11000000",
"sale_expense": "22506435.83000000",
"manage_expense": "40723009.61000000",
"me_research_expense": "",
"finance_expense": "8665548.10000000",
"fe_interest_expense": "842586.43000000",
"fe_interest_income": "1862020.32000000",
"asset_impairment_loss": "",
"credit_impairment_loss": "",
"toc_other": "",
"fairvalue_change_income": "",
"invest_income": "473791.09000000",
"invest_joint_income": "426941.77000000",
"net_exposure_income": "",
"exchange_income": "",
"asset_disposal_income": "",
"asset_impairment_income": "-8388280.75000000",
"credit_impairment_income": "-8033123.93000000",
"other_income": "2416258.82000000",
"operate_profit_other": "",
"operate_profit_balance": "0.00000000",
"operate_profit": "119410408.02000000",
"nonbusiness_income": "39435.81000000",
"noncurrent_disposal_income": "",
"nonbusiness_expense": "157819.44000000",
"noncurrent_disposal_loss": "",
"effect_tp_other": "",
"total_profit_balance": "0.00000000",
"total_profit": "119292024.39000000",
"income_tax": "569327.03000000",
"effect_netprofit_other": "",
"effect_netprofit_balance": "",
"unconfirm_invest_loss": "",
"netprofit": "118722697.36000000",
"precombine_profit": "",
"continued_netprofit": "118722697.36000000",
"discontinued_netprofit": "",
"parent_netprofit": "118903186.14000000",
"minority_interest": "-180488.78000000",
"deduct_parent_netprofit": "116408674.30000000",
"netprofit_other": "",
"netprofit_balance": "",
"basic_eps": "1.54000000",
"diluted_eps": "1.54000000",
"other_compre_income": "-1072605.89000000",
"parent_oci": "-1072605.89000000",
"minority_oci": "",
"parent_oci_other": "",
"parent_oci_balance": "",
"unable_oci": "",
"creditrisk_fairvalue_change": "",
"otherright_fairvalue_change": "",
"setup_profit_change": "",
"rightlaw_unable_oci": "",
"unable_oci_other": "",
"unable_oci_balance": "",
"able_oci": "-1072605.89000000",
"rightlaw_able_oci": "",
"afa_fairvalue_change": "",
"hmi_afa": "",
"cashflow_hedge_valid": "",
"creditor_fairvalue_change": "",
"creditor_impairment_reserve": "",
"finance_oci_amt": "",
"convert_diff": "-1072605.89000000",
"able_oci_other": "",
"able_oci_balance": "",
"oci_other": "",
"oci_balance": "",
"total_compre_income": "117650091.47000000",
"parent_tci": "117830580.25000000",
"minority_tci": "-180488.78000000",
"precombine_tci": "",
"effect_tci_balance": "",
"tci_other": "",
"tci_balance": "",
"acf_end_income": "",
"opinion_type": ""
},
"yoy": {
"indicator": "按报告期同比",
"secucode": "688808.SH",
"org_code": "10000440894.00000000",
"org_type": "通用",
"report_date": "2026-03-31",
"report_type": "一季报",
"report_date_name": "2026一季报",
"security_type_code": "58001001.00000000",
"notice_date": "2026-04-29",
"update_date": "2026-04-29",
"currency": "CNY",
"total_operate_income_yoy": "142.52014794",
"operate_income_yoy": "142.52014794",
"interest_income_yoy": "0.00000000",
"earned_premium_yoy": "0.00000000",
"fee_commission_income_yoy": "0.00000000",
"other_business_income_yoy": "0.00000000",
"toi_other_yoy": "0.00000000",
"total_operate_cost_yoy": "98.44123821",
"operate_cost_yoy": "132.52551314",
"interest_expense_yoy": "0.00000000",
"fee_commission_expense_yoy": "0.00000000",
"research_expense_yoy": "108.80314201",
"surrender_value_yoy": "0.00000000",
"net_compensate_expense_yoy": "0.00000000",
"net_contract_reserve_yoy": "0.00000000",
"policy_bonus_expense_yoy": "0.00000000",
"reinsure_expense_yoy": "0.00000000",
"other_business_cost_yoy": "0.00000000",
"operate_tax_add_yoy": "10.42228420",
"sale_expense_yoy": "5.83096354",
"manage_expense_yoy": "34.27721537",
"me_research_expense_yoy": "0.00000000",
"finance_expense_yoy": "777.07869173",
"fe_interest_expense_yoy": "791.19468338",
"fe_interest_income_yoy": "231.11317791",
"asset_impairment_loss_yoy": "0.00000000",
"credit_impairment_loss_yoy": "0.00000000",
"toc_other_yoy": "0.00000000",
"fairvalue_change_income_yoy": "0.00000000",
"invest_income_yoy": "-69.65726597",
"invest_joint_income_yoy": "6301.43872666",
"net_exposure_income_yoy": "0.00000000",
"exchange_income_yoy": "0.00000000",
"asset_disposal_income_yoy": "0.00000000",
"asset_impairment_income_yoy": "-221.59613378",
"credit_impairment_income_yoy": "-204.96593430",
"other_income_yoy": "151.31720627",
"operate_profit_other_yoy": "0.00000000",
"operate_profit_balance_yoy": "0.00000000",
"operate_profit_yoy": "522.34275260",
"nonbusiness_income_yoy": "-82.58391380",
"noncurrent_disposal_income_yoy": "0.00000000",
"nonbusiness_expense_yoy": "8.05130942",
"noncurrent_disposal_loss_yoy": "0.00000000",
"effect_tp_other_yoy": "0.00000000",
"total_profit_balance_yoy": "0.00000000",
"total_profit_yoy": "519.13227501",
"income_tax_yoy": "5447.76208708",
"effect_netprofit_other_yoy": "0.00000000",
"effect_netprofit_balance_yoy": "0.00000000",
"unconfirm_invest_loss_yoy": "0.00000000",
"netprofit_yoy": "515.83716277",
"precombine_profit_yoy": "0.00000000",
"continued_netprofit_yoy": "515.83716277",
"discontinued_netprofit_yoy": "0.00000000",
"parent_netprofit_yoy": "515.16526178",
"minority_interest_yoy": "-258.14001665",
"deduct_parent_netprofit_yoy": "564.64127592",
"netprofit_other_yoy": "0.00000000",
"netprofit_balance_yoy": "0.00000000",
"basic_eps_yoy": "450.00000000",
"diluted_eps_yoy": "450.00000000",
"other_compre_income_yoy": "-733.46796767",
"parent_oci_yoy": "-733.46796767",
"minority_oci_yoy": "0.00000000",
"parent_oci_other_yoy": "0.00000000",
"parent_oci_balance_yoy": "0.00000000",
"unable_oci_yoy": "0.00000000",
"creditrisk_fairvalue_change_yoy": "0.00000000",
"otherright_fairvalue_change_yoy": "0.00000000",
"setup_profit_change_yoy": "0.00000000",
"rightlaw_unable_oci_yoy": "0.00000000",
"unable_oci_other_yoy": "0.00000000",
"unable_oci_balance_yoy": "0.00000000",
"able_oci_yoy": "-733.46796767",
"rightlaw_able_oci_yoy": "0.00000000",
"afa_fairvalue_change_yoy": "0.00000000",
"hmi_afa_yoy": "0.00000000",
"cashflow_hedge_valid_yoy": "0.00000000",
"creditor_fairvalue_change_yoy": "0.00000000",
"creditor_impairment_reserve_yoy": "0.00000000",
"finance_oci_amt_yoy": "0.00000000",
"convert_diff_yoy": "-733.46796767",
"able_oci_other_yoy": "0.00000000",
"able_oci_balance_yoy": "0.00000000",
"oci_other_yoy": "0.00000000",
"oci_balance_yoy": "0.00000000",
"total_compre_income_yoy": "504.95993098",
"parent_tci_yoy": "504.32197909",
"minority_tci_yoy": "-258.14001665",
"precombine_tci_yoy": "0.00000000",
"effect_tci_balance_yoy": "0.00000000",
"tci_other_yoy": "0.00000000",
"tci_balance_yoy": "0.00000000",
"acf_end_income_yoy": "0.00000000"
}
}
]
}
}
| 参数名称 | 类型 | 必填 | 说明 |
|---|---|---|---|
| code | string | 是 | 股票代码 |
| startdate | string | 否 | 统计开始日期 |
| enddate | string | 否 | 统计结束日期 |
| 参数名称 | 类型 | 说明 |
|---|---|---|
| code | string | 股票代码 (如 688808) |
| name | string | 股票名称 (如 联讯仪器) |
| startdate | string | 统计开始日期 |
| enddate | string | 统计结束日期 |
| report_date | string | 报告日期 |
| report_type | string | 报告类型 |
| sales_services | string | 销售商品、提供劳务收到的现金 |
| deposit_interbank_add | string | 客户存款和同业存放款项净增加额 |
| loan_pbc_add | string | 向中央银行借款净增加额 |
| ofi_bf_add | string | 向其他金融机构拆入资金净增加额 |
| receive_origic_premium | string | 收到原保险合同保费取得的现金 |
| receive_reinsure_net | string | 收到再保险业务现金净额 |
| insured_invest_add | string | 保户储金及投资款净增加额 |
| disposal_tfa_add | string | 处置交易性金融资产净增加额 |
| receive_interest_commission | string | 收取利息、手续费及佣金的现金 |
| borrow_fund_add | string | 拆入资金净增加额 |
| loan_advance_reduce | string | 回购业务资金净增加额 |
| repo_business_add | string | 代理买卖证券收到的现金净额 |
| receive_tax_refund | string | 收到的税费返还 |
| receive_other_operate | string | 收到其他与经营活动有关的现金 |
| operate_inflow_other | string | 经营活动现金流入其他项 |
| operate_inflow_balance | string | 经营活动现金流入平衡项 |
| total_operate_inflow | string | 经营活动现金流入小计 |
| buy_services | string | 购买商品、接受劳务支付的现金 |
| loan_advance_add | string | 客户贷款及垫款净增加额 |
| pbc_interbank_add | string | 存放中央银行和同业款项净增加额 |
| pay_origic_compensate | string | 支付原保险合同赔付款项的现金 |
| pay_interest_commission | string | 支付利息、手续费及佣金的现金 |
| pay_policy_bonus | string | 支付保单红利的现金 |
| pay_staff_cash | string | 支付给职工以及为职工支付的现金 |
| pay_all_tax | string | 支付的各项税费 |
| pay_other_operate | string | 支付其他与经营活动有关的现金 |
| operate_outflow_other | string | 经营活动现金流出其他项 |
| operate_outflow_balance | string | 经营活动现金流出平衡项 |
| total_operate_outflow | string | 经营活动现金流出小计 |
| operate_netcash_other | string | 经营活动现金流量净额其他项 |
| operate_netcash_balance | string | 经营活动现金流量净额平衡项 |
| netcash_operate | string | 经营活动产生的现金流量净额 |
| withdraw_invest | string | 收回投资收到的现金 |
| receive_invest_income | string | 取得投资收益收到的现金 |
| disposal_long_asset | string | 处置固定资产、无形资产和其他长期资产收回的现金净额 |
| disposal_subsidiary_other | string | 处置子公司及其他营业单位收到的现金净额 |
| reduce_pledge_timedeposits | string | 减少质押和定期存款所收到的现金 |
| receive_other_invest | string | 收到其他与投资活动有关的现金 |
| invest_inflow_other | string | 投资活动现金流入其他项 |
| invest_inflow_balance | string | 投资活动现金流入平衡项 |
| total_invest_inflow | string | 投资活动现金流入小计 |
| construct_long_asset | string | 购建固定资产、无形资产和其他长期资产支付的现金 |
| invest_pay_cash | string | 投资支付的现金 |
| pledge_loan_add | string | 质押贷款净增加额 |
| obtain_subsidiary_other | string | 取得子公司及其他营业单位支付的现金净额 |
| add_pledge_timedeposits | string | 增加质押和定期存款所支付的现金 |
| pay_other_invest | string | 支付其他与投资活动有关的现金 |
| invest_outflow_other | string | 投资活动现金流出其他项 |
| invest_outflow_balance | string | 投资活动现金流出平衡项 |
| total_invest_outflow | string | 投资活动现金流出小计 |
| invest_netcash_other | string | 投资活动现金流量净额其他项 |
| invest_netcash_balance | string | 投资活动现金流量净额平衡项 |
| netcash_invest | string | 投资活动产生的现金流量净额 |
| accept_invest_cash | string | 吸收投资收到的现金 |
| subsidiary_accept_invest | string | 其中:子公司吸收少数股东投资收到的现金 |
| receive_loan_cash | string | 取得借款收到的现金 |
| issue_bond | string | 发行债券收到的现金 |
| receive_other_finance | string | 收到其他与筹资活动有关的现金 |
| finance_inflow_other | string | 筹资活动现金流入其他项 |
| finance_inflow_balance | string | 筹资活动现金流入平衡项 |
| total_finance_inflow | string | 筹资活动现金流入小计 |
| pay_debt_cash | string | 偿还债务支付的现金 |
| assign_dividend_porfit | string | 分配股利、利润或偿付利息支付的现金 |
| subsidiary_pay_dividend | string | 其中:子公司支付给少数股东的股利、利润 |
| buy_subsidiary_equity | string | 购买子公司少数股东权益支付的现金 |
| pay_other_finance | string | 支付其他与筹资活动有关的现金 |
| subsidiary_reduce_cash | string | 其中:子公司减资支付给少数股东的现金 |
| finance_outflow_other | string | 筹资活动现金流出其他项 |
| finance_outflow_balance | string | 筹资活动现金流出平衡项 |
| total_finance_outflow | string | 筹资活动现金流出小计 |
| finance_netcash_other | string | 筹资活动现金流量净额其他项 |
| finance_netcash_balance | string | 筹资活动现金流量净额平衡项 |
| netcash_finance | string | 筹资活动产生的现金流量净额 |
| rate_change_effect | string | 汇率变动对现金及现金等价物的影响 |
| cce_add_other | string | 现金及现金等价物净增加额其他项 |
| cce_add_balance | string | 现金及现金等价物净增加额平衡项 |
| cce_add | string | 现金及现金等价物净增加额 |
| begin_cce | string | 期初现金及现金等价物余额 |
| end_cce_other | string | 期末现金及现金等价物余额其他项 |
| end_cce_balance | string | 期末现金及现金等价物余额平衡项 |
| end_cce | string | 期末现金及现金等价物余额 |
| netprofit | string | 净利润 |
| asset_impairment | string | 资产减值准备 |
| fa_ir_depr | string | 固定资产折旧、油气资产折耗、生产性生物资产折旧 |
| oilgas_biology_depr | string | 油气资产折耗、生产性生物资产折旧 |
| ir_depr | string | 无形资产摊销 |
| ia_amortize | string | 长期待摊费用摊销 |
| lpe_amortize | string | 处置固定资产、无形资产和其他长期资产的损失 |
| defer_income_amortize | string | 公允价值变动损失 |
| prepaid_expense_reduce | string | 财务费用 |
| accrued_expense_add | string | 投资损失 |
| disposal_longasset_loss | string | 递延所得税资产减少 |
| fa_scrap_loss | string | 递延所得税负债增加 |
| fairvalue_change_loss | string | 存货的减少 |
| finance_expense | string | 经营性应收项目的减少 |
| invest_loss | string | 经营性应付项目的增加 |
| defer_tax | string | 其他 |
| dt_asset_reduce | string | 经营活动现金流量净额其他附注项 |
| dt_liab_add | string | 经营活动现金流量净额平衡附注项 |
| predict_liab_add | string | 经营活动现金流量净额附注项 |
| inventory_reduce | string | 债务转为资本 |
| operate_rece_reduce | string | 一年内到期的可转换公司债券 |
| operate_payable_add | string | 融资租入固定资产 |
| other | string | 不涉及现金收支的重大投资和筹资活动其他 |
| operate_netcash_othernote | string | 经营活动现金流量净额其他附注项 |
| operate_netcash_balancenote | string | 经营活动现金流量净额平衡附注项 |
| netcash_operatenote | string | 经营活动现金流量净额附注项 |
| debt_transfer_capital | string | 债务转为资本 |
| convert_bond_1year | string | 一年内到期的可转换公司债券 |
| finlease_obtain_fa | string | 融资租入固定资产 |
| uninvolve_investfin_other | string | 不涉及现金收支的重大投资和筹资活动其他 |
| end_cash | string | 期末现金及现金等价物余额 |
| begin_cash | string | 期初现金及现金等价物余额 |
| end_cash_equivalents | string | 期末现金及现金等价物余额 |
| begin_cash_equivalents | string | 期初现金及现金等价物余额 |
| cce_add_othernote | string | 现金及现金等价物净增加额其他附注项 |
| cce_add_balancenote | string | 现金及现金等价物净增加额平衡附注项 |
| cce_addnote | string | 现金及现金等价物净增加额附注项 |
| opinion_type | string | 审计意见类型 |
| osopinion_type | string | 其他审计意见 |
| minority_interest | string | 少数股东权益 |
| useright_asset_amortize | string | 使用权资产摊销 |
| sales_services_yoy | string | 销售商品提供劳务收到的现金同比增长率 |
| deposit_interbank_add_yoy | string | 客户存款和同业存放款项净增加额同比增长率 |
| loan_pbc_add_yoy | string | 向中央银行借款净增加额同比增长率 |
| ofi_bf_add_yoy | string | 向其他金融机构拆入资金净增加额同比增长率 |
| receive_origic_premium_yoy | string | 收到原保险合同保费取得的现金同比增长率 |
| receive_reinsure_net_yoy | string | 收到再保险业务现金净额同比增长率 |
| insured_invest_add_yoy | string | 保户储金及投资款净增加额同比增长率 |
| disposal_tfa_add_yoy | string | 处置交易性金融资产净增加额同比增长率 |
| receive_interest_commission_yoy | string | 收取利息手续费及佣金的现金同比增长率 |
| borrow_fund_add_yoy | string | 拆入资金净增加额同比增长率 |
| loan_advance_reduce_yoy | string | 回购业务资金净增加额同比增长率 |
| repo_business_add_yoy | string | 代理买卖证券收到的现金净额同比增长率 |
| receive_tax_refund_yoy | string | 收到的税费返还同比增长率 |
| receive_other_operate_yoy | string | 收到其他与经营活动有关的现金同比增长率 |
| operate_inflow_other_yoy | string | 经营活动现金流入其他项同比增长率 |
| operate_inflow_balance_yoy | string | 经营活动现金流入平衡项同比增长率 |
| total_operate_inflow_yoy | string | 经营活动现金流入小计同比增长率 |
| buy_services_yoy | string | 购买商品接受劳务支付的现金同比增长率 |
| loan_advance_add_yoy | string | 客户贷款及垫款净增加额同比增长率 |
| pbc_interbank_add_yoy | string | 存放中央银行和同业款项净增加额同比增长率 |
| pay_origic_compensate_yoy | string | 支付原保险合同赔付款项的现金同比增长率 |
| pay_interest_commission_yoy | string | 支付利息手续费及佣金的现金同比增长率 |
| pay_policy_bonus_yoy | string | 支付保单红利的现金同比增长率 |
| pay_staff_cash_yoy | string | 支付给职工以及为职工支付的现金同比增长率 |
| pay_all_tax_yoy | string | 支付的各项税费同比增长率 |
| pay_other_operate_yoy | string | 支付其他与经营活动有关的现金同比增长率 |
| operate_outflow_other_yoy | string | 经营活动现金流出其他项同比增长率 |
| operate_outflow_balance_yoy | string | 经营活动现金流出平衡项同比增长率 |
| total_operate_outflow_yoy | string | 经营活动现金流出小计同比增长率 |
| operate_netcash_other_yoy | string | 经营活动现金流量净额其他项同比增长率 |
| operate_netcash_balance_yoy | string | 经营活动现金流量净额平衡项同比增长率 |
| netcash_operate_yoy | string | 经营活动产生的现金流量净额同比增长率 |
| withdraw_invest_yoy | string | 收回投资收到的现金同比增长率 |
| receive_invest_income_yoy | string | 取得投资收益收到的现金同比增长率 |
| disposal_long_asset_yoy | string | 处置固定资产无形资产等收回现金净额同比增长率 |
| disposal_subsidiary_other_yoy | string | 处置子公司及其他营业单位收到的现金净额同比增长率 |
| reduce_pledge_timedeposits_yoy | string | 减少质押和定期存款所收到的现金同比增长率 |
| receive_other_invest_yoy | string | 收到其他与投资活动有关的现金同比增长率 |
| invest_inflow_other_yoy | string | 投资活动现金流入其他项同比增长率 |
| invest_inflow_balance_yoy | string | 投资活动现金流入平衡项同比增长率 |
| total_invest_inflow_yoy | string | 投资活动现金流入小计同比增长率 |
| construct_long_asset_yoy | string | 购建固定资产无形资产等支付的现金同比增长率 |
| invest_pay_cash_yoy | string | 投资支付的现金同比增长率 |
| pledge_loan_add_yoy | string | 质押贷款净增加额同比增长率 |
| obtain_subsidiary_other_yoy | string | 取得子公司及其他营业单位支付的现金净额同比增长率 |
| add_pledge_timedeposits_yoy | string | 增加质押和定期存款所支付的现金同比增长率 |
| pay_other_invest_yoy | string | 支付其他与投资活动有关的现金同比增长率 |
| invest_outflow_other_yoy | string | 投资活动现金流出其他项同比增长率 |
| invest_outflow_balance_yoy | string | 投资活动现金流出平衡项同比增长率 |
| total_invest_outflow_yoy | string | 投资活动现金流出小计同比增长率 |
| invest_netcash_other_yoy | string | 投资活动现金流量净额其他项同比增长率 |
| invest_netcash_balance_yoy | string | 投资活动现金流量净额平衡项同比增长率 |
| netcash_invest_yoy | string | 投资活动产生的现金流量净额同比增长率 |
| accept_invest_cash_yoy | string | 吸收投资收到的现金同比增长率 |
| subsidiary_accept_invest_yoy | string | 子公司吸收少数股东投资收到的现金同比增长率 |
| receive_loan_cash_yoy | string | 取得借款收到的现金同比增长率 |
| issue_bond_yoy | string | 发行债券收到的现金同比增长率 |
| receive_other_finance_yoy | string | 收到其他与筹资活动有关的现金同比增长率 |
| finance_inflow_other_yoy | string | 筹资活动现金流入其他项同比增长率 |
| finance_inflow_balance_yoy | string | 筹资活动现金流入平衡项同比增长率 |
| total_finance_inflow_yoy | string | 筹资活动现金流入小计同比增长率 |
| pay_debt_cash_yoy | string | 偿还债务支付的现金同比增长率 |
| assign_dividend_porfit_yoy | string | 分配股利利润或偿付利息支付的现金同比增长率 |
| subsidiary_pay_dividend_yoy | string | 子公司支付给少数股东的股利利润同比增长率 |
| buy_subsidiary_equity_yoy | string | 购买子公司少数股东权益支付的现金同比增长率 |
| pay_other_finance_yoy | string | 支付其他与筹资活动有关的现金同比增长率 |
| subsidiary_reduce_cash_yoy | string | 子公司减资支付给少数股东的现金同比增长率 |
| finance_outflow_other_yoy | string | 筹资活动现金流出其他项同比增长率 |
| finance_outflow_balance_yoy | string | 筹资活动现金流出平衡项同比增长率 |
| total_finance_outflow_yoy | string | 筹资活动现金流出小计同比增长率 |
| finance_netcash_other_yoy | string | 筹资活动现金流量净额其他项同比增长率 |
| finance_netcash_balance_yoy | string | 筹资活动现金流量净额平衡项同比增长率 |
| netcash_finance_yoy | string | 筹资活动产生的现金流量净额同比增长率 |
| rate_change_effect_yoy | string | 汇率变动对现金的影响同比增长率 |
| cce_add_other_yoy | string | 现金及现金等价物净增加额其他项同比增长率 |
| cce_add_balance_yoy | string | 现金及现金等价物净增加额平衡项同比增长率 |
| cce_add_yoy | string | 现金及现金等价物净增加额同比增长率 |
| begin_cce_yoy | string | 期初现金及现金等价物余额同比增长率 |
| end_cce_other_yoy | string | 期末现金及现金等价物余额其他项同比增长率 |
| end_cce_balance_yoy | string | 期末现金及现金等价物余额平衡项同比增长率 |
| end_cce_yoy | string | 期末现金及现金等价物余额同比增长率 |
| netprofit_yoy | string | 净利润同比增长率 |
| asset_impairment_yoy | string | 资产减值准备同比增长率 |
| fa_ir_depr_yoy | string | 固定资产折旧等同比增长率 |
| oilgas_biology_depr_yoy | string | 油气资产折耗等同比增长率 |
| ir_depr_yoy | string | 无形资产摊销同比增长率 |
| ia_amortize_yoy | string | 长期待摊费用摊销同比增长率 |
| lpe_amortize_yoy | string | 处置长期资产损失同比增长率 |
| defer_income_amortize_yoy | string | 公允价值变动损失同比增长率 |
| prepaid_expense_reduce_yoy | string | 财务费用同比增长率 |
| accrued_expense_add_yoy | string | 投资损失同比增长率 |
| disposal_longasset_loss_yoy | string | 递延所得税资产减少同比增长率 |
| fa_scrap_loss_yoy | string | 递延所得税负债增加同比增长率 |
| fairvalue_change_loss_yoy | string | 存货减少同比增长率 |
| finance_expense_yoy | string | 经营性应收项目减少同比增长率 |
| invest_loss_yoy | string | 经营性应付项目增加同比增长率 |
| defer_tax_yoy | string | 其他同比增长率 |
| dt_asset_reduce_yoy | string | 递延所得税资产减少其他项同比增长率 |
| dt_liab_add_yoy | string | 递延所得税负债增加其他项同比增长率 |
| predict_liab_add_yoy | string | 预计负债增加同比增长率 |
| inventory_reduce_yoy | string | 存货减少其他项同比增长率 |
| operate_rece_reduce_yoy | string | 经营性应收项目减少其他项同比增长率 |
| operate_payable_add_yoy | string | 经营性应付项目增加其他项同比增长率 |
| other_yoy | string | 其他同比增长率 |
| operate_netcash_othernote_yoy | string | 经营活动现金流量净额其他附注项同比增长率 |
| operate_netcash_balancenote_yoy | string | 经营活动现金流量净额平衡附注项同比增长率 |
| netcash_operatenote_yoy | string | 经营活动现金流量净额附注项同比增长率 |
| debt_transfer_capital_yoy | string | 债务转为资本同比增长率 |
| convert_bond_1year_yoy | string | 一年内到期的可转换公司债券同比增长率 |
| finlease_obtain_fa_yoy | string | 融资租入固定资产同比增长率 |
| uninvolve_investfin_other_yoy | string | 不涉及现金收支的重大投资筹资活动其他同比增长率 |
| end_cash_yoy | string | 期末现金及现金等价物余额同比增长率 |
| begin_cash_yoy | string | 期初现金及现金等价物余额同比增长率 |
| end_cash_equivalents_yoy | string | 期末现金及现金等价物余额同比增长率 |
| begin_cash_equivalents_yoy | string | 期初现金及现金等价物余额同比增长率 |
| cce_add_othernote_yoy | string | 现金及现金等价物净增加额其他附注项同比增长率 |
| cce_add_balancenote_yoy | string | 现金及现金等价物净增加额平衡附注项同比增长率 |
| cce_addnote_yoy | string | 现金及现金等价物净增加额附注项同比增长率 |
| minority_interest_yoy | string | 少数股东权益同比增长率 |
| useright_asset_amortize_yoy | string | 使用权资产摊销同比增长率 |
{
"status": 0,
"msg": "ok",
"result": {
"code": "688808",
"name": "联讯仪器",
"startdate": "2025-06-09",
"enddate": "2026-06-09",
"list": [
{
"report_date": "2026-03-31",
"report_type": "一季报",
"main": {
"indicator": "按报告期",
"secucode": "688808.SH",
"org_code": "10000440894.00000000",
"org_type": "通用",
"report_date": "2026-03-31",
"report_type": "一季报",
"report_date_name": "2026一季报",
"security_type_code": "58001001.00000000",
"notice_date": "2026-04-29",
"update_date": "2026-04-29",
"currency": "CNY",
"sales_services": "406750415.56999999",
"deposit_interbank_add": "",
"loan_pbc_add": "",
"ofi_bf_add": "",
"receive_origic_premium": "",
"receive_reinsure_net": "",
"insured_invest_add": "",
"disposal_tfa_add": "",
"receive_interest_commission": "",
"borrow_fund_add": "",
"loan_advance_reduce": "",
"repo_business_add": "",
"receive_tax_refund": "7079776.04000000",
"receive_other_operate": "55034880.49000000",
"operate_inflow_other": "",
"operate_inflow_balance": "0.00000000",
"total_operate_inflow": "468865072.10000002",
"buy_services": "196020430.69999999",
"loan_advance_add": "",
"pbc_interbank_add": "",
"pay_origic_compensate": "",
"pay_interest_commission": "",
"pay_policy_bonus": "",
"pay_staff_cash": "137308733.38999999",
"pay_all_tax": "9002785.63000000",
"pay_other_operate": "43120489.25000000",
"operate_outflow_other": "",
"operate_outflow_balance": "0.00000000",
"total_operate_outflow": "385452438.97000003",
"operate_netcash_other": "",
"operate_netcash_balance": "0.00000000",
"netcash_operate": "83412633.13000000",
"withdraw_invest": "",
"receive_invest_income": "46849.32000000",
"disposal_long_asset": "",
"disposal_subsidiary_other": "",
"reduce_pledge_timedeposits": "",
"receive_other_invest": "50000000.00000000",
"invest_inflow_other": "",
"invest_inflow_balance": "0.00000000",
"total_invest_inflow": "50046849.32000000",
"construct_long_asset": "17632910.20000000",
"invest_pay_cash": "",
"pledge_loan_add": "",
"obtain_subsidiary_other": "",
"add_pledge_timedeposits": "",
"pay_other_invest": "",
"invest_outflow_other": "",
"invest_outflow_balance": "0.00000000",
"total_invest_outflow": "17632910.20000000",
"invest_netcash_other": "",
"invest_netcash_balance": "0.00000000",
"netcash_invest": "32413939.12000000",
"accept_invest_cash": "",
"subsidiary_accept_invest": "",
"receive_loan_cash": "36112735.85000000",
"issue_bond": "",
"receive_other_finance": "",
"finance_inflow_other": "",
"finance_inflow_balance": "0.00000000",
"total_finance_inflow": "36112735.85000000",
"pay_debt_cash": "",
"assign_dividend_porfit": "626216.09000000",
"subsidiary_pay_dividend": "",
"buy_subsidiary_equity": "",
"pay_other_finance": "2223806.65000000",
"subsidiary_reduce_cash": "",
"finance_outflow_other": "",
"finance_outflow_balance": "0.00000000",
"total_finance_outflow": "2850022.74000000",
"finance_netcash_other": "",
"finance_netcash_balance": "0.00000000",
"netcash_finance": "33262713.11000000",
"rate_change_effect": "-5722112.16000000",
"cce_add_other": "",
"cce_add_balance": "0.00000000",
"cce_add": "143367173.19999999",
"begin_cce": "312363557.54000002",
"end_cce_other": "",
"end_cce_balance": "0.00000000",
"end_cce": "455730730.74000001",
"netprofit": "",
"asset_impairment": "",
"fa_ir_depr": "",
"oilgas_biology_depr": "",
"ir_depr": "",
"ia_amortize": "",
"lpe_amortize": "",
"defer_income_amortize": "",
"prepaid_expense_reduce": "",
"accrued_expense_add": "",
"disposal_longasset_loss": "",
"fa_scrap_loss": "",
"fairvalue_change_loss": "",
"finance_expense": "",
"invest_loss": "",
"defer_tax": "",
"dt_asset_reduce": "",
"dt_liab_add": "",
"predict_liab_add": "",
"inventory_reduce": "",
"operate_rece_reduce": "",
"operate_payable_add": "",
"other": "",
"operate_netcash_othernote": "",
"operate_netcash_balancenote": "",
"netcash_operatenote": "",
"debt_transfer_capital": "",
"convert_bond_1year": "",
"finlease_obtain_fa": "",
"uninvolve_investfin_other": "",
"end_cash": "",
"begin_cash": "",
"end_cash_equivalents": "",
"begin_cash_equivalents": "",
"cce_add_othernote": "",
"cce_add_balancenote": "",
"cce_addnote": "",
"opinion_type": "",
"osopinion_type": "",
"minority_interest": "",
"useright_asset_amortize": ""
},
"yoy": {
"indicator": "按报告期同比",
"secucode": "688808.SH",
"org_code": "10000440894.00000000",
"org_type": "通用",
"report_date": "2026-03-31",
"report_type": "一季报",
"report_date_name": "2026一季报",
"security_type_code": "58001001.00000000",
"notice_date": "2026-04-29",
"update_date": "2026-04-29",
"currency": "CNY",
"sales_services_yoy": "97.48343157",
"deposit_interbank_add_yoy": "0.00000000",
"loan_pbc_add_yoy": "0.00000000",
"ofi_bf_add_yoy": "0.00000000",
"receive_origic_premium_yoy": "0.00000000",
"receive_reinsure_net_yoy": "0.00000000",
"insured_invest_add_yoy": "0.00000000",
"disposal_tfa_add_yoy": "0.00000000",
"receive_interest_commission_yoy": "0.00000000",
"borrow_fund_add_yoy": "0.00000000",
"loan_advance_reduce_yoy": "0.00000000",
"repo_business_add_yoy": "0.00000000",
"receive_tax_refund_yoy": "189.14621256",
"receive_other_operate_yoy": "1088.90591365",
"operate_inflow_other_yoy": "0.00000000",
"operate_inflow_balance_yoy": "0.00000000",
"total_operate_inflow_yoy": "120.07856861",
"buy_services_yoy": "23.87099494",
"loan_advance_add_yoy": "0.00000000",
"pbc_interbank_add_yoy": "0.00000000",
"pay_origic_compensate_yoy": "0.00000000",
"pay_interest_commission_yoy": "0.00000000",
"pay_policy_bonus_yoy": "0.00000000",
"pay_staff_cash_yoy": "71.80169203",
"pay_all_tax_yoy": "264.48460185",
"pay_other_operate_yoy": "72.68434990",
"operate_outflow_other_yoy": "0.00000000",
"operate_outflow_balance_yoy": "0.00000000",
"total_operate_outflow_yoy": "45.12017400",
"operate_netcash_other_yoy": "0.00000000",
"operate_netcash_balance_yoy": "0.00000000",
"netcash_operate_yoy": "258.68554729",
"withdraw_invest_yoy": "0.00000000",
"receive_invest_income_yoy": "-96.03257415",
"disposal_long_asset_yoy": "0.00000000",
"disposal_subsidiary_other_yoy": "0.00000000",
"reduce_pledge_timedeposits_yoy": "0.00000000",
"receive_other_invest_yoy": "-78.26086957",
"invest_inflow_other_yoy": "0.00000000",
"invest_inflow_balance_yoy": "0.00000000",
"total_invest_inflow_yoy": "-78.35164570",
"construct_long_asset_yoy": "-61.28315886",
"invest_pay_cash_yoy": "0.00000000",
"pledge_loan_add_yoy": "0.00000000",
"obtain_subsidiary_other_yoy": "0.00000000",
"add_pledge_timedeposits_yoy": "0.00000000",
"pay_other_invest_yoy": "0.00000000",
"invest_outflow_other_yoy": "0.00000000",
"invest_outflow_balance_yoy": "0.00000000",
"total_invest_outflow_yoy": "-89.95523350",
"invest_netcash_other_yoy": "0.00000000",
"invest_netcash_balance_yoy": "0.00000000",
"netcash_invest_yoy": "-41.74093919",
"accept_invest_cash_yoy": "0.00000000",
"subsidiary_accept_invest_yoy": "0.00000000",
"receive_loan_cash_yoy": "-45.11003301",
"issue_bond_yoy": "0.00000000",
"receive_other_finance_yoy": "0.00000000",
"finance_inflow_other_yoy": "0.00000000",
"finance_inflow_balance_yoy": "0.00000000",
"total_finance_inflow_yoy": "-45.11003301",
"pay_debt_cash_yoy": "0.00000000",
"assign_dividend_porfit_yoy": "0.00000000",
"subsidiary_pay_dividend_yoy": "0.00000000",
"buy_subsidiary_equity_yoy": "0.00000000",
"pay_other_finance_yoy": "-35.05793654",
"subsidiary_reduce_cash_yoy": "0.00000000",
"finance_outflow_other_yoy": "0.00000000",
"finance_outflow_balance_yoy": "0.00000000",
"total_finance_outflow_yoy": "-16.77048108",
"finance_netcash_other_yoy": "0.00000000",
"finance_netcash_balance_yoy": "0.00000000",
"netcash_finance_yoy": "-46.66603491",
"rate_change_effect_yoy": "-736.21736806",
"cce_add_other_yoy": "0.00000000",
"cce_add_balance_yoy": "0.00000000",
"cce_add_yoy": "116.11261366",
"begin_cce_yoy": "86.87406754",
"end_cce_other_yoy": "0.00000000",
"end_cce_balance_yoy": "0.00000000",
"end_cce_yoy": "95.18127819",
"netprofit_yoy": "0.00000000",
"asset_impairment_yoy": "0.00000000",
"fa_ir_depr_yoy": "0.00000000",
"oilgas_biology_depr_yoy": "0.00000000",
"ir_depr_yoy": "0.00000000",
"ia_amortize_yoy": "0.00000000",
"lpe_amortize_yoy": "0.00000000",
"defer_income_amortize_yoy": "0.00000000",
"prepaid_expense_reduce_yoy": "0.00000000",
"accrued_expense_add_yoy": "0.00000000",
"disposal_longasset_loss_yoy": "0.00000000",
"fa_scrap_loss_yoy": "0.00000000",
"fairvalue_change_loss_yoy": "0.00000000",
"finance_expense_yoy": "0.00000000",
"invest_loss_yoy": "0.00000000",
"defer_tax_yoy": "0.00000000",
"dt_asset_reduce_yoy": "0.00000000",
"dt_liab_add_yoy": "0.00000000",
"predict_liab_add_yoy": "0.00000000",
"inventory_reduce_yoy": "0.00000000",
"operate_rece_reduce_yoy": "0.00000000",
"operate_payable_add_yoy": "0.00000000",
"other_yoy": "0.00000000",
"operate_netcash_othernote_yoy": "0.00000000",
"operate_netcash_balancenote_yoy": "0.00000000",
"netcash_operatenote_yoy": "0.00000000",
"debt_transfer_capital_yoy": "0.00000000",
"convert_bond_1year_yoy": "0.00000000",
"finlease_obtain_fa_yoy": "0.00000000",
"uninvolve_investfin_other_yoy": "0.00000000",
"end_cash_yoy": "0.00000000",
"begin_cash_yoy": "0.00000000",
"end_cash_equivalents_yoy": "0.00000000",
"begin_cash_equivalents_yoy": "0.00000000",
"cce_add_othernote_yoy": "0.00000000",
"cce_add_balancenote_yoy": "0.00000000",
"cce_addnote_yoy": "0.00000000",
"minority_interest_yoy": "0.00000000",
"useright_asset_amortize_yoy": "0.00000000"
}
}
]
}
}
| 代号 | 说明 |
|---|---|
| 201 | 股票代码为空 |
| 202 | 股票代码不存在 |
| 210 | 没有信息 |
| 代号 | 说明 |
|---|---|
| 101 | APPKEY为空或不存在 |
| 102 | APPKEY已过期 |
| 103 | APPKEY无请求此数据权限 |
| 104 | 请求超过次数限制 |
| 105 | IP被禁止 |
| 106 | IP请求超过限制 |
| 107 | 接口维护中 |
| 108 | 接口已停用 |
| 计次套餐 | 套餐规格 | 价格 | ||
|---|---|---|---|---|
| 免费套餐 | 100次 | 0.00 元 | ≈0元/次 | |
| Level1 | 100000次 | 198.00 元 | ≈0.00198元/次 | |
| Level2 | 200000次 | 370.00 元 | ≈0.00185元/次 | |
| Level3 | 500000次 | 850.00 元 | ≈0.0017元/次 | |
| Level4 | 1000000次 | 1500.00 元 | ≈0.0015元/次 | |


© 2015-2025 杭州极速互联科技有限公司 版权所有 浙ICP备17047587号-4 浙公网安备33010502005096 增值电信业务经营许可证:浙B2-20190875
