wu
2023-12-04 a93a3f1532d33849187dcd1a372c315ec4511e04
springboot-vue3/src/main/java/com/example/springboot/entity/vo/CheckResult.java
New file
@@ -0,0 +1,15 @@
package com.example.springboot.entity.vo;
import io.jsonwebtoken.Claims;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
@Getter
@Setter
@ToString
public class CheckResult {
    private boolean success;
    private Claims claims;
    private String errCode;
}