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

io.github.dragons96.SuccessNotResultResponse Maven / Gradle / Ivy

There is a newer version: 0.0.4
Show newest version
package io.github.dragons96;

import lombok.ToString;

/**
 * 成功响应(不含数据)
 * @author dragons
 * @date 2022/3/16 12:35
 */
@ToString(callSuper = true)
public class SuccessNotResultResponse extends BaseResponse {

    public SuccessNotResultResponse(int code, String message) {
        super(code, message);
    }

    public SuccessNotResultResponse(IResponseEnum responseEnum) {
        super(responseEnum);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy