forked from rongchao/epmet-cloud-rizhao
6 changed files with 170 additions and 4 deletions
@ -0,0 +1,48 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import com.epmet.commons.tools.dto.form.PageFormDTO; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Description |
||||
|
* @Author yzm |
||||
|
* @Date 2023/3/2 17:35 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class GroupRentHouseFormDTO extends PageFormDTO implements Serializable { |
||||
|
private static final long serialVersionUID = -953729855530434972L; |
||||
|
/** |
||||
|
* 组织ID |
||||
|
*/ |
||||
|
private String orgId; |
||||
|
private String orgType; |
||||
|
|
||||
|
/** |
||||
|
* 房主姓名 |
||||
|
*/ |
||||
|
private String ownerName; |
||||
|
/** |
||||
|
* 房主电话 |
||||
|
*/ |
||||
|
private String ownerPhone; |
||||
|
|
||||
|
/** |
||||
|
* 房屋用途 |
||||
|
*/ |
||||
|
private String purpose; |
||||
|
|
||||
|
/** |
||||
|
* 备注 |
||||
|
*/ |
||||
|
private String remark; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* tokenDto获取 |
||||
|
*/ |
||||
|
private String customerId; |
||||
|
private String staffId; |
||||
|
} |
||||
|
|
Loading…
Reference in new issue