package com.fzzy.api.dto; import lombok.Data; import java.io.Serializable; /** * @author vince.xu * @Title: ResponseDto * @ProjectName igds-api * @Description: TODO * @date 2022-9-217:48 */ @Data public class ResponseDto implements Serializable { /** * */ private static final long serialVersionUID = -6714158228489303453L; /** * 大于0则失败 */ public int success; /** * 说明 */ public String msg; /** * 登录时 会返回 */ public String token; /** * 业务id */ public String bizId; public String JSESSIONID; /** * 拉取数据data */ public String data; public ResponseDto() { } public ResponseDto(int success, String msg) { this.success = success; this.msg = msg; } public ResponseDto(int success, String msg, String bizId) { this.success = success; this.msg = msg; this.bizId = bizId; } }