All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tekmare.commons.model.response.ResponseModel Maven / Gradle / Ivy

package com.tekmare.commons.model.response;

import com.tekmare.commons.util.Globals;
import lombok.*;

import java.io.Serializable;

@Getter
@Setter
@AllArgsConstructor
@NoArgsConstructor
public abstract class ResponseModel implements Serializable {

    protected Integer code;
    protected String msg;

    @Override
    public String toString() {
        return Globals.toString(this);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy