首次提交

This commit is contained in:
guotao 2026-01-09 12:20:24 +08:00
commit 1101681331
131 changed files with 7017 additions and 0 deletions

View file

@ -0,0 +1,15 @@
package com.xjhs.findmemerchant.dto.auth;
/**
* 商家注册响应内容
*
* @param merchantId 商户id
* @param accessToken 访问令牌
* @param refreshToken 刷新令牌
*/
public record RegisterDto(
Long merchantId,
String accessToken,
String refreshToken
) {
}