4 changed files with 94 additions and 2 deletions
@ -0,0 +1,30 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* 当前组织下,居民信息里的志愿者列表 |
||||
|
* 下拉框可用 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ResiVolunteerSelectDTO implements Serializable { |
||||
|
/** |
||||
|
* 下拉框显示值 |
||||
|
* 尹作梅(15764229697) |
||||
|
*/ |
||||
|
private String label; |
||||
|
private String value; |
||||
|
private String icResiUserId; |
||||
|
/** |
||||
|
* 姓名 |
||||
|
*/ |
||||
|
private String name; |
||||
|
|
||||
|
/** |
||||
|
* 手机号 |
||||
|
*/ |
||||
|
private String mobile; |
||||
|
} |
Loading…
Reference in new issue