• This project
    • Loading...
  • Sign in

wei.zhou / iClear-api

Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • iClear-api
  • ..
  • response
  • ResultRS.java
  • wei.zhou's avatar
    init · 1d0b8932
    1d0b8932
    wei.zhou authored 2021-06-11 17:14:09 +0800
ResultRS.java 343 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
package com.erry.iclear.dateInterface.api.response;

import lombok.Data;

import java.io.Serializable;

/**
 * @author Administrator
 */
@Data
public class ResultRS implements Serializable {

    //成功标识
    private Boolean success = true;
    private String code;

    //错误信息
    private String msg;
    private Object data;
}