Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

9 lines
360B

  1. from util.MyConnectionPool import MySqLHelper
  2. from util import YmlUtils
  3. import json
  4. if __name__=="__main__":
  5. content = YmlUtils.getConfigs()
  6. sql = MySqLHelper(content)
  7. 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)
  8. print(res)