forked from luyan/epmet-cloud-lingshan
6 changed files with 53 additions and 14 deletions
@ -0,0 +1,21 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @Description |
|||
* @Author zhaoqifeng |
|||
* @Date 2022/8/25 9:20 |
|||
*/ |
|||
@Data |
|||
public class PartyPointRecordResultDTO implements Serializable { |
|||
private static final long serialVersionUID = -1480768520576719171L; |
|||
/** |
|||
* 日期 yyyy-MM-dd 字符串 |
|||
* */ |
|||
private String date; |
|||
private List<PartyPointResultDTO> dailyList; |
|||
} |
Loading…
Reference in new issue