- package com.cyksj.service.chatgpt;
- import com.cyksj.model.entity.Account;
- /**
- * @author chan
- * @date 2024/3/19 11:01
- */
- public interface ChatGptAccountService {
- String addAccount(Account account);
- void upAccount(Account account);
- String getLoginUrl(Long userId, Long relationId);
- }
|