feat:获取用户token

This commit is contained in:
2025-12-08 13:43:38 +08:00
parent df41eeab00
commit 716f11fcd7
8 changed files with 60 additions and 12 deletions

View File

@@ -0,0 +1,19 @@
package com.sdm.common.entity.resp.system;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
@Data
@Schema(description = "用户新增请求参数")
public class UserTokenResp {
@Schema(description = "token")
private String access_token;
@Schema(description = "用户ID")
private String cid_user_id;
@Schema(description = "租户ID")
private String cid_tenant_id;
}