3 changed files with 42 additions and 11 deletions
@ -0,0 +1,35 @@ |
|||||
|
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 EventProcessHisResultDto implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -8700554713907308891L; |
||||
|
|
||||
|
@JSONField(name = "HISTORY") |
||||
|
private List<EventProcessResultDto> HISTORY; |
||||
|
|
||||
|
public List<EventProcessResultDto> getHISTORY() { |
||||
|
return HISTORY; |
||||
|
} |
||||
|
|
||||
|
public void setHISTORY(List<EventProcessResultDto> HISTORY) { |
||||
|
this.HISTORY = HISTORY; |
||||
|
} |
||||
|
|
||||
|
@Override |
||||
|
public String toString() { |
||||
|
return "EventProcessHisResultDto{" + |
||||
|
"HISTORY=" + HISTORY + |
||||
|
'}'; |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue