forked from rongchao/epmet-cloud-rizhao
7 changed files with 121 additions and 4 deletions
@ -0,0 +1,22 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.Date; |
|||
|
|||
/** |
|||
* @Description 根据小区,楼宇,单元名称校验是否存在 |
|||
* @Author wgf |
|||
* @Date 2022/8/24 9:03 |
|||
*/ |
|||
@Data |
|||
public class HouseCountPictureFormDTO implements Serializable { |
|||
private static final long serialVersionUID = 2636608477324780974L; |
|||
|
|||
private String orgIdPath; |
|||
|
|||
private Date timeStart; |
|||
|
|||
private Date timeEnd; |
|||
} |
@ -0,0 +1,23 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
import lombok.NoArgsConstructor; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @Description |
|||
* @Author zhaoqifeng |
|||
* @Date 2021/11/5 15:59 |
|||
*/ |
|||
@NoArgsConstructor |
|||
@Data |
|||
public class HouseCountPictureResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 2063032844842070847L; |
|||
|
|||
private String type; |
|||
|
|||
private Integer count; |
|||
} |
Loading…
Reference in new issue