This commit is contained in:
张良(004796)
2023-12-26 10:27:32 +08:00
parent b2cdbe9985
commit b4ceb243e3
45 changed files with 293 additions and 9 deletions

View File

@@ -1,9 +1,13 @@
package com.ruoyi.cai.auth;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
@Data
@Schema(description = "登陆入参模型")
public class LoginCaiUser {
@Schema(description = "用户")
private String username;
@Schema(description = "密码")
private String password;
}