package com.jisuan.util; import lombok.Getter; import lombok.Setter; @Getter @Setter public class R { private Integer code; private String msg; private String token; private T data; public R(Integer code, String msg) { this.code = code; this.msg = msg; } public R(StatusCode statusCode) { this.code = statusCode.getCode(); this.msg = statusCode.getMsg(); } public R(Integer code, String msg, T data, String token) { this.code = code; this.msg = msg; this.data = data; this.token=token; } }