Commit ba327998 authored by macro's avatar macro
Browse files

Update CommonResult.java

parent 8c15f7d8
......@@ -5,8 +5,17 @@ package com.macro.mall.common.api;
* Created by macro on 2019/4/19.
*/
public class CommonResult<T> {
/**
* 状态码
*/
private long code;
/**
* 提示信息
*/
private String message;
/**
* 数据封装
*/
private T data;
protected CommonResult() {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment