| | |
| | | package com.ruoyi.integration.drainage.model; |
| | | |
| | | import com.ruoyi.other.api.domain.Operator; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.NotNull; |
| | |
| | | * @Date 2025/1/21 15:54 |
| | | */ |
| | | @Data |
| | | public class BaseResult<T> { |
| | | public class BaseResult extends BaseModel { |
| | | /** |
| | | * 参数编码 |
| | | * -1:系统繁忙,此时请求方稍后重试 |
| | |
| | | * 500:系统错误 |
| | | */ |
| | | @NotNull |
| | | private Integer Ret; |
| | | private Integer ret; |
| | | /** |
| | | * 错误信息描述 |
| | | */ |
| | | @NotNull |
| | | private String Msg; |
| | | /** |
| | | * 参数实体 |
| | | */ |
| | | @NotNull |
| | | private T Data; |
| | | private String msg; |
| | | /** |
| | | * 签名 |
| | | */ |
| | | @NotNull |
| | | private String Sig; |
| | | private String sig; |
| | | |
| | | /** |
| | | * 运营商对象 |
| | | */ |
| | | private Operator operator; |
| | | } |