9 changed files with 156 additions and 5 deletions
@ -0,0 +1,18 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import com.epmet.commons.tools.dto.form.PageFormDTO; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @program: epmet-cloud |
||||
|
* @description: |
||||
|
* @author: wangtong |
||||
|
* @create: 2022-08-03 14:15 |
||||
|
**/ |
||||
|
@Data |
||||
|
public class CollectPageFormDTO extends PageFormDTO implements Serializable { |
||||
|
|
||||
|
private String customerId; |
||||
|
} |
@ -0,0 +1,51 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2022/3/18 19:00 |
||||
|
* @DESC |
||||
|
*/ |
||||
|
@Data |
||||
|
public class CollectPageListDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -6692672375850864451L; |
||||
|
|
||||
|
|
||||
|
private String id; |
||||
|
|
||||
|
/** |
||||
|
* 居住地址 |
||||
|
*/ |
||||
|
private String address; |
||||
|
|
||||
|
/** |
||||
|
* 居民:resi 访客:visitor |
||||
|
*/ |
||||
|
private String type; |
||||
|
|
||||
|
/** |
||||
|
* 居民登记/访客登记 |
||||
|
*/ |
||||
|
private String title; |
||||
|
|
||||
|
/** |
||||
|
* 审核状态:0待审核 1审核不通过 2审核通过 |
||||
|
*/ |
||||
|
private String checkState; |
||||
|
|
||||
|
/** |
||||
|
* 审核状态名称 |
||||
|
*/ |
||||
|
private String checkStateName; |
||||
|
|
||||
|
/** |
||||
|
* 提交时间 |
||||
|
*/ |
||||
|
private String createTime; |
||||
|
|
||||
|
|
||||
|
} |
Loading…
Reference in new issue