feat:获取用户token
This commit is contained in:
@@ -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;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user