fix
Helius
2022-03-09 b77274cb4cf252a29d4eb3c1dd3bda02c7fbe6f6
src/main/java/com/xcong/excoin/common/system/dto/LoginDto.java
@@ -15,11 +15,11 @@
public class LoginDto {
    @ApiModelProperty(value = "用户名", example = "123")
    @ApiModelProperty(value = "用户名", example = "11111")
    @NotBlank(message = "用户名或密码错误")
    private String username;
    @ApiModelProperty(value = "密码", example = "3333")
    @ApiModelProperty(value = "密码", example = "123456")
    @NotBlank(message = "用户名或密码错误")
    private String password;
}