|
- from util.MyConnectionPool import MySqLHelper
- from util import YmlUtils
- import json
-
- if __name__=="__main__":
- content = YmlUtils.getConfigs()
- sql = MySqLHelper(content)
- res = sql.selectall("select id, name, code, description, create_user, create_time, update_user, update_time, mark from dsp_model_classification where mark = %s", 1)
- print(res)
|