package com.fzzy.push.shjdjw2023.dto;
|
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* 接口返回
|
* @author czt
|
* @date 2023/5/9 19:27
|
*/
|
@Data
|
public class ShjdjwRespDto<T> implements Serializable {
|
/**
|
*
|
*/
|
private static final long serialVersionUID = -6714158228489303453L;
|
|
|
|
private int code ;
|
|
private String description;
|
|
private String bizId;
|
|
private T data;
|
|
public ShjdjwRespDto() {
|
}
|
|
public ShjdjwRespDto(int code, String description) {
|
this.code = code;
|
this.description = description;
|
}
|
public ShjdjwRespDto(int code, String description, String bizId) {
|
this.code = code;
|
this.description = description;
|
this.bizId = bizId;
|
}
|
}
|