SandRequest.java 551 Bytes
package com.cjs.site.model.sand;

import java.io.Serializable;

/**
 * Created by bruce on 2019-04-22 15:07
 */
public class SandRequest<T> implements Serializable {

    private static final long serialVersionUID = 7088026548440318367L;

    private RequestHead head;
    private T body;

    public RequestHead getHead() {
        return head;
    }

    public void setHead(RequestHead head) {
        this.head = head;
    }

    public T getBody() {
        return body;
    }

    public void setBody(T body) {
        this.body = body;
    }
}