feat: 返回系统信息

This commit is contained in:
caoqianming 2025-11-03 12:39:16 +08:00
parent 72a6ed6a46
commit ef66c256af
1 changed files with 4 additions and 0 deletions

View File

@ -29,6 +29,10 @@ def get_standard():
standard = json.load(f) standard = json.load(f)
return standard return standard
@app.route("/api/system_info/", methods=["GET"])
def get_system_info():
return jsonify({"base_name": "转型金融核算系统"}), 200
@app.route("/api/standard/", methods=["GET"]) @app.route("/api/standard/", methods=["GET"])
@jwt_required() @jwt_required()