1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
| package com.fzzy.push.nx2024.dto;
|
| import lombok.Data;
| import java.io.Serializable;
|
| /**
| * @Description 宁夏省平台2024版-上报反馈封装
| * @Author CZT
| * @Date 2024/7/25 15:21
| */
| @Data
| public class Nx2024RespDto<T> implements Serializable {
| /**
| *
| */
| private static final long serialVersionUID = -6714158228489303453L;
|
| private int code ;
|
| private String result;
|
|
| public Nx2024RespDto() {
| }
|
| public Nx2024RespDto(int code, String result) {
| this.code = code;
| this.result = result;
| }
| }
|
|