6 changed files with 77 additions and 1 deletions
@ -0,0 +1,23 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import com.epmet.commons.tools.dto.form.PageFormDTO; |
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
|
|||
|
|||
@Data |
|||
public class ServiceListFormDTO extends PageFormDTO implements Serializable { |
|||
@NotBlank(message = "type不能为空:志愿者:volunteer;社区自组织:community_org", groups = PageFormDTO.AddUserInternalGroup.class) |
|||
private String type; |
|||
|
|||
/** |
|||
* 服务方id , |
|||
* 可能是来源于多元主题分析里的社区自组织,也可能是来源于志愿者 |
|||
*/ |
|||
@NotBlank(message = "serverId不能为空", groups = PageFormDTO.AddUserInternalGroup.class) |
|||
private String serverId; |
|||
|
|||
private String customerId; |
|||
} |
Loading…
Reference in new issue