BaseResponse.java 549 Bytes
package com.idss.vulsync.entity.vo;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import lombok.Data;

/**
 * @Author: zc
 * @Date: 2024/8/13 15:11
 */
@Data
public class BaseResponse <Rsp>{
    private String msgID;
    private Integer msgType;
    private Integer statusCode;
    private String statusText;
    @JsonProperty("RspMsgCnt")
    private Rsp rspMsgCnt;
    @JsonProperty("Timestamp")
    private String timestamp;
    @JsonProperty("Sign")
    private String sign;
}