Helius
2021-03-26 e386221d4c6b3f80c2f7aa1a6ecd4a5906ff773b
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;
}