13 lines
231 B
Java
13 lines
231 B
Java
package com.zhgd.xmgl.entity.sj;
|
|
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class UnifiedAuthenticationHttpResponse {
|
|
|
|
private String errorCode;
|
|
private String errorMessage;
|
|
private String spanId;
|
|
private String traceId;
|
|
|
|
} |