|  |  |  | 
|---|
|  |  |  | package com.fzzy.push.sx2023.data; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.fasterxml.jackson.annotation.JsonProperty; | 
|---|
|  |  |  | import lombok.Data; | 
|---|
|  |  |  | import java.io.Serializable; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | * @Date 2024/4/23 15:02 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @Data | 
|---|
|  |  |  | public class SX2023ReqDto<T> implements Serializable { | 
|---|
|  |  |  | public class SX2023ReqDto implements Serializable { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 报文标识 | 
|---|
|  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 单位编码:11位 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private String OrgNo; | 
|---|
|  |  |  | @JsonProperty("OrgNo") | 
|---|
|  |  |  | private String orgNo; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 单位名称 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private String OrgName; | 
|---|
|  |  |  | @JsonProperty("OrgName") | 
|---|
|  |  |  | private String orgName; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 发起时间 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private String SendTime; | 
|---|
|  |  |  | @JsonProperty("SendTime") | 
|---|
|  |  |  | private String sendTime; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 单位代码 | 
|---|
|  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 数据主体内容:加密 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private T Body; | 
|---|
|  |  |  | @JsonProperty("Body") | 
|---|
|  |  |  | private String body; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|