智普大模型应用
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.

17 lines
269 B

  1. package com.bfd.qanda.service;
  2. /**
  3. * 问答业务层
  4. * @author jian.mao
  5. * @date 2023年11月8日
  6. * @description
  7. */
  8. public interface QandaService {
  9. /**
  10. * 问答
  11. * @param dataJson 接口参数
  12. * @return
  13. */
  14. public String putQuestion(String dataJson);
  15. }