Commit 9d9c07ab authored by macro's avatar macro
Browse files

通用API封装对象注释修改

parent cebc5736
...@@ -6,7 +6,7 @@ import org.springframework.data.domain.Page; ...@@ -6,7 +6,7 @@ import org.springframework.data.domain.Page;
import java.util.List; import java.util.List;
/** /**
* 分页数据封装类 * 通用分页数据封装类
* Created by macro on 2019/4/19. * Created by macro on 2019/4/19.
*/ */
public class CommonPage<T> { public class CommonPage<T> {
......
package com.macro.mall.common.api; package com.macro.mall.common.api;
/** /**
* 通用返回对象 * 通用返回结果封装类
* Created by macro on 2019/4/19. * Created by macro on 2019/4/19.
*/ */
public class CommonResult<T> { public class CommonResult<T> {
......
package com.macro.mall.common.api; package com.macro.mall.common.api;
/** /**
* 常用API返回对象接口 * API返回接口
* Created by macro on 2019/4/19. * Created by macro on 2019/4/19.
*/ */
public interface IErrorCode { public interface IErrorCode {
......
package com.macro.mall.common.api; package com.macro.mall.common.api;
/** /**
* 常用API返回对象 * API返回码封装类
* Created by macro on 2019/4/19. * Created by macro on 2019/4/19.
*/ */
public enum ResultCode implements IErrorCode { public enum ResultCode implements IErrorCode {
......
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