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; } }