You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
472 B
22 lines
472 B
package com.example.demo.Util;
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
@Data
|
|
@NoArgsConstructor
|
|
@JsonIgnoreProperties(ignoreUnknown = true)
|
|
public class TokenPayload {
|
|
@JsonProperty("token")
|
|
private String token;
|
|
private String account;
|
|
private String password;
|
|
private String pageNum;
|
|
private String pageSize;
|
|
|
|
|
|
}
|
|
|