整合提交

This commit is contained in:
2026-06-23 18:46:45 +08:00
parent 32e35666af
commit 0b4860f46e
452 changed files with 21755 additions and 23 deletions
@@ -0,0 +1,18 @@
package com.weather.dto;
import io.swagger.v3.oas.annotations.media.Schema;
import jakarta.validation.constraints.NotBlank;
import lombok.Data;
@Data
@Schema(title = "登录表单")
public class LoginDTO {
@Schema(title = "手机号")
@NotBlank(message = "手机号不能为空")
private String mobile;
@Schema(title = "密码")
@NotBlank(message = "密码不能为空")
private String password;
}