4 changed files with 132 additions and 34 deletions
@ -0,0 +1,47 @@ |
|||
package com.elink.esua.epdc.gird.shibei.dto.result; |
|||
|
|||
import com.alibaba.fastjson.annotation.JSONField; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @program: esua-epdc |
|||
* @description: |
|||
* @author: wangtong |
|||
* @create: 2020-12-16 19:26 |
|||
**/ |
|||
public class EventProcessBatchHisResultDto implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -8700554713907308891L; |
|||
|
|||
@JSONField(name = "RECID") |
|||
private String RECID; |
|||
|
|||
@JSONField(name = "HISTORY") |
|||
private List<EventProcessResultDto> HISTORY; |
|||
|
|||
public List<EventProcessResultDto> getHISTORY() { |
|||
return HISTORY; |
|||
} |
|||
|
|||
public String getRECID() { |
|||
return RECID; |
|||
} |
|||
|
|||
public void setHISTORY(List<EventProcessResultDto> HISTORY) { |
|||
this.HISTORY = HISTORY; |
|||
} |
|||
|
|||
public void setRECID(String RECID) { |
|||
this.RECID = RECID; |
|||
} |
|||
|
|||
@Override |
|||
public String toString() { |
|||
return "EventProcessBatchHisResultDto{" + |
|||
"RECID='" + RECID + '\'' + |
|||
", HISTORY=" + HISTORY + |
|||
'}'; |
|||
} |
|||
} |
Loading…
Reference in new issue