You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
505 B
19 lines
505 B
2 years ago
|
#!/usr/bin/env python
|
||
|
# -*- encoding: utf-8 -*-
|
||
|
'''
|
||
|
@Date:2022/07/29 09:03:39
|
||
|
'''
|
||
|
from flask import Blueprint, jsonify, request
|
||
|
from Common.Utils import Utils
|
||
|
from db_logic.client import BllClient
|
||
|
|
||
|
client_router = Blueprint("client", __name__)
|
||
|
|
||
|
|
||
|
# 查看client列表
|
||
|
@client_router.route("/client_list", methods=["POST"])
|
||
|
def get_client_list():
|
||
|
data = BllClient().get_all_client_list()
|
||
|
data_list = Utils.msyql_table_model(data)
|
||
|
return jsonify(Utils.true_return(data={"data_list": data_list}))
|