Update UmsAdminLoginParam.java

This commit is contained in:
macro
2020-09-17 20:39:53 +08:00
parent ce85818687
commit a2b44abc8a

View File

@@ -13,10 +13,10 @@ import javax.validation.constraints.NotEmpty;
@Data
@EqualsAndHashCode(callSuper = false)
public class UmsAdminLoginParam {
@NotEmpty
@ApiModelProperty(value = "用户名", required = true)
@NotEmpty
private String username;
@ApiModelProperty(value = "密码", required = true)
@NotEmpty
@ApiModelProperty(value = "密码", required = true)
private String password;
}