JavaApiInfoStatics.java 1.15 KB
package com.model;

public class JavaApiInfoStatics {
    private Integer apiId;

    private Integer mobjId;

    private Byte isException;

    private String exception;

    private long startTime;

    private long endTime;


    public Integer getApiId() {
        return apiId;
    }

    public void setApiId(Integer apiId) {
        this.apiId = apiId;
    }

    public Integer getMobjId() {
        return mobjId;
    }

    public void setMobjId(Integer mobjId) {
        this.mobjId = mobjId;
    }

    public Byte getIsException() {
        return isException;
    }

    public void setIsException(Byte isException) {
        this.isException = isException;
    }

    public String getException() {
        return exception;
    }

    public void setException(String exception) {
        this.exception = exception == null ? null : exception.trim();
    }

    public long getStartTime() {
        return startTime;
    }

    public void setStartTime(long startTime) {
        this.startTime = startTime;
    }

    public long getEndTime() {
        return endTime;
    }

    public void setEndTime(long endTime) {
        this.endTime = endTime;
    }
}