156 lines
3.3 KiB
Java
156 lines
3.3 KiB
Java
package com.arpa.hndahesudintocctmsdriver.bean;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @author hlh
|
|
* @version 1.0.0
|
|
* @date 2021/8/30 19:48
|
|
* @description:
|
|
*/
|
|
public class ComplaintBean {
|
|
|
|
private int res;
|
|
private int code;
|
|
private boolean success;
|
|
private String msg;
|
|
private List<DataDTO> data;
|
|
|
|
public int getRes() {
|
|
return res;
|
|
}
|
|
|
|
public void setRes(int res) {
|
|
this.res = res;
|
|
}
|
|
|
|
public int getCode() {
|
|
return code;
|
|
}
|
|
|
|
public void setCode(int code) {
|
|
this.code = code;
|
|
}
|
|
|
|
public boolean isSuccess() {
|
|
return success;
|
|
}
|
|
|
|
public void setSuccess(boolean success) {
|
|
this.success = success;
|
|
}
|
|
|
|
public String getMsg() {
|
|
return msg == null ? "" : msg;
|
|
}
|
|
|
|
public void setMsg(String msg) {
|
|
this.msg = msg;
|
|
}
|
|
|
|
public List<DataDTO> getData() {
|
|
if (data == null) {
|
|
return new ArrayList<>();
|
|
}
|
|
return data;
|
|
}
|
|
|
|
public void setData(List<DataDTO> data) {
|
|
this.data = data;
|
|
}
|
|
|
|
public static class DataDTO {
|
|
private int waybillId;
|
|
private String content;
|
|
private Object listImgUrl;
|
|
private int type;
|
|
private int status;
|
|
private String handleContent;
|
|
private int handleUser;
|
|
private String handleTime;
|
|
private int appraiserId;
|
|
private Object folderId;
|
|
|
|
public int getWaybillId() {
|
|
return waybillId;
|
|
}
|
|
|
|
public void setWaybillId(int waybillId) {
|
|
this.waybillId = waybillId;
|
|
}
|
|
|
|
public String getContent() {
|
|
return content == null ? "" : content;
|
|
}
|
|
|
|
public void setContent(String content) {
|
|
this.content = content;
|
|
}
|
|
|
|
public Object getListImgUrl() {
|
|
return listImgUrl;
|
|
}
|
|
|
|
public void setListImgUrl(Object listImgUrl) {
|
|
this.listImgUrl = listImgUrl;
|
|
}
|
|
|
|
public int getType() {
|
|
return type;
|
|
}
|
|
|
|
public void setType(int type) {
|
|
this.type = type;
|
|
}
|
|
|
|
public int getStatus() {
|
|
return status;
|
|
}
|
|
|
|
public void setStatus(int status) {
|
|
this.status = status;
|
|
}
|
|
|
|
public String getHandleContent() {
|
|
return handleContent == null ? "" : handleContent;
|
|
}
|
|
|
|
public void setHandleContent(String handleContent) {
|
|
this.handleContent = handleContent;
|
|
}
|
|
|
|
public int getHandleUser() {
|
|
return handleUser;
|
|
}
|
|
|
|
public void setHandleUser(int handleUser) {
|
|
this.handleUser = handleUser;
|
|
}
|
|
|
|
public String getHandleTime() {
|
|
return handleTime == null ? "" : handleTime;
|
|
}
|
|
|
|
public void setHandleTime(String handleTime) {
|
|
this.handleTime = handleTime;
|
|
}
|
|
|
|
public int getAppraiserId() {
|
|
return appraiserId;
|
|
}
|
|
|
|
public void setAppraiserId(int appraiserId) {
|
|
this.appraiserId = appraiserId;
|
|
}
|
|
|
|
public Object getFolderId() {
|
|
return folderId;
|
|
}
|
|
|
|
public void setFolderId(Object folderId) {
|
|
this.folderId = folderId;
|
|
}
|
|
}
|
|
}
|