1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| package com.fzzy.inte.sh2023.dto;
|
| import com.fzzy.inte.sh2023.constant.ApiRespCode;
| import lombok.Data;
|
| /**
| * @Desc: 接口返回对象,暂定
| * @author: andy.jia
| * @update-time: 2023/3/7 19:15
| */
| @Data
| public class ApiResp {
|
| private String code = ApiRespCode.R_200.getCode();
|
| private String msg = ApiRespCode.R_200.getMsg();
|
| private String outId;
|
| public ApiResp() {
| }
|
| public ApiResp(String outId) {
| this.outId = outId;
| }
|
| public ApiResp(String code, String msg) {
| this.code = code;
| this.msg = msg;
| }
| }
|
|