forked from rongchao/epmet-cloud-rizhao
6 changed files with 65 additions and 0 deletions
@ -0,0 +1,28 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
@Data |
||||
|
public class HistoryScoreResultDTO implements Serializable { |
||||
|
private static final long serialVersionUID = -4316054054019675419L; |
||||
|
|
||||
|
/** |
||||
|
* id |
||||
|
*/ |
||||
|
private String id; |
||||
|
/** |
||||
|
* 标题 |
||||
|
*/ |
||||
|
private String title; |
||||
|
/** |
||||
|
* 起始时间 |
||||
|
*/ |
||||
|
private String startTime; |
||||
|
/** |
||||
|
* 截止时间 |
||||
|
*/ |
||||
|
private String endTime; |
||||
|
|
||||
|
} |
Loading…
Reference in new issue