|
@@ -1,10 +1,12 @@
|
|
|
package com.rshy.project.hy.server.param;
|
|
|
|
|
|
import com.alibaba.fastjson.annotation.JSONField;
|
|
|
+import com.fasterxml.jackson.annotation.JsonIgnore;
|
|
|
import com.rshy.project.hy.model.constant.WebConstant;
|
|
|
import com.rshy.project.hy.model.entity.Identity;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
+import io.swagger.annotations.ApiParam;
|
|
|
import lombok.Data;
|
|
|
import lombok.experimental.Accessors;
|
|
|
|
|
@@ -30,7 +32,7 @@ public class RshyParam {
|
|
|
@ApiModelProperty("健康码")
|
|
|
private String barCode;
|
|
|
|
|
|
- @ApiModelProperty("超时时间")
|
|
|
+ @ApiModelProperty("超时时间,单位秒")
|
|
|
private Integer timeout = WebConstant.TIMEOUT;
|
|
|
|
|
|
@ApiModelProperty("人脸照片 Base64")
|
|
@@ -39,7 +41,12 @@ public class RshyParam {
|
|
|
@ApiModelProperty("锁屏状态")
|
|
|
private Integer screenLocked;
|
|
|
|
|
|
+ @ApiModelProperty("登录信息")
|
|
|
+ private LoginInfo loginInfo;
|
|
|
+
|
|
|
@JSONField(serialize = false, deserialize = false)
|
|
|
+ @ApiModelProperty(hidden = true)
|
|
|
+ @JsonIgnore
|
|
|
private Identity identity;
|
|
|
|
|
|
@Override
|