package com.doumee.core.haikang.model.cars; import lombok.Data; @Data public class BaseCarsResponse { private T data; /** *错误信息描述,仅status不为0时有值 */ private String msg; /** * 请求结果状态值, 成功为0,其他值请查看附录返回码状态表。 */ private Integer status; }