forked from rongchao/epmet-cloud-rizhao
7 changed files with 120 additions and 8 deletions
@ -0,0 +1,24 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
|
|||
/** |
|||
* 租客表 |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2022-07-26 |
|||
*/ |
|||
@Data |
|||
public class VisitVisitorChartFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 时间 |
|||
*/ |
|||
private String date; |
|||
|
|||
} |
@ -0,0 +1,30 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
|
|||
/** |
|||
* 租客表 |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2022-07-26 |
|||
*/ |
|||
@Data |
|||
public class VisitVisitorChartResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 时间 |
|||
*/ |
|||
private String hour; |
|||
|
|||
/** |
|||
* 数量 |
|||
*/ |
|||
private String num; |
|||
|
|||
|
|||
} |
Loading…
Reference in new issue