- 添加微信登录功能,支持通过微信小程序登录 - 实现用户信息管理接口,包括获取用户信息和统计数据 - 新增投资组合列表和总资产统计接口 - 完善JWT令牌生成逻辑,支持可选用户名 - 添加数据库初始化配置和连接字符串 - 移除传统登录和注册功能,专注微信登录方案
14 lines
496 B
C#
14 lines
496 B
C#
using AssetManager.Models.DTOs;
|
|
|
|
namespace AssetManager.Services;
|
|
|
|
public interface IPortfolioService
|
|
{
|
|
CreatePortfolioResponse CreatePortfolio(CreatePortfolioRequest request);
|
|
PortfolioDetailResponse GetPortfolioById(string id);
|
|
GetTransactionsResponse GetTransactions(string portfolioId, int limit, int offset);
|
|
CreateTransactionResponse CreateTransaction(CreateTransactionRequest request);
|
|
GetPortfoliosResponse GetPortfolios();
|
|
TotalAssetsResponse GetTotalAssets();
|
|
}
|