• This project
    • Loading...
  • Sign in

Fedex / 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
  • tao.mo's avatar
    PI-11-功能扩展-07: · 8efa1465 ...
    8efa1465 Browse Files
    接口校验信息返回英文描述
    mt
    2023年3月8日16:59:49
    tao.mo authored 2023-03-08 16:59:58 +0800
ResultRS.java 415 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 21
package com.erry.iclear.dateInterface.api.response;

import lombok.AllArgsConstructor;
import lombok.Data;

import java.io.Serializable;

/**
 * @author Administrator
 */
@Data
@AllArgsConstructor
public class ResultRS implements Serializable {
    //成功标识
    private Boolean success = true;
    private String code;
    //错误信息
    private String msg;
    //Object data;
    private String msgUS;
}