|
|
@ -2,6 +2,7 @@ package com.elink.esua.epdc.dto; |
|
|
|
|
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
import javax.validation.constraints.NotNull; |
|
|
|
import java.io.Serializable; |
|
|
|
|
|
|
|
/** |
|
|
@ -20,10 +21,17 @@ public class PointsUpdateFormDTO implements Serializable { |
|
|
|
* 网格上报事件-grid_report_event |
|
|
|
* 网格工作上传-grid_work_upload |
|
|
|
*/ |
|
|
|
@NotNull(message = "行为类型不能为空") |
|
|
|
private String behaviorType; |
|
|
|
|
|
|
|
/** |
|
|
|
* 手机号 |
|
|
|
*/ |
|
|
|
@NotNull(message = "手机号不能为空") |
|
|
|
private String mobile; |
|
|
|
|
|
|
|
/** |
|
|
|
* 用户id |
|
|
|
*/ |
|
|
|
private String userId; |
|
|
|
} |
|
|
|