package com.zuidaima.appoint.dto; /** * 封装json对象,所有返回结果都使用它 */ public class Result<T> { private boolean success;// 是否成功标志 private T data;// 成功时返回的数据 private String error;// 错误信息 public Result() { } // 成功时的构造器 public Result(boolean success, T data) { this.success = success; this.data = data; } // 错误时的构造器 public Result(boolean success, String error) { this.success = success; this.error = error; } public boolean isSuccess() { return success; } public void setSuccess(boolean success) { this.success = success; } public T getData() { return data; } public void setData(T data) { this.data = data; } public String getError() { return error; } public void setError(String error) { this.error = error; } }
最近下载更多
lpclpclpc LV4
2023年5月30日
2511952410 LV9
2022年9月10日
sharkness123 LV8
2022年6月12日
湫枫1234 LV4
2022年4月3日
wanglinddad LV55
2022年3月29日
yhb123456 LV5
2022年3月20日
微笑刺客 LV19
2022年2月16日
YUJHhui LV5
2021年12月19日
Vin992 LV8
2021年11月8日
kks9580 LV6
2021年10月29日