|
@@ -1,6 +1,7 @@
|
|
|
package com.fs.store.param.h5;
|
|
|
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
|
|
|
@@ -29,9 +30,11 @@ public class FsUserPageListParam implements Serializable {
|
|
|
private String companyUserId;
|
|
|
|
|
|
@ApiModelProperty(value = "注册时间-开始")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
private String registerStartTime;
|
|
|
|
|
|
@ApiModelProperty(value = "注册时间-结束")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
private String registerEndTime;
|
|
|
|
|
|
@ApiModelProperty(value = "标签")
|