xiaoyong931011
2021-07-15 bf9a238e4b6db75c28ee9efae265f36f33301d83
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package com.xzx.gc.user.dto;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
 
@Data
@ApiModel(value = "DistribInfoListDto", description = "加入团长参数接收类")
public class DistribInfoListDto {
 
    private String name;
 
    private String phone;
 
    @JsonFormat(shape=JsonFormat.Shape.STRING,pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
    @ApiModelProperty(value="开始时间")
    private Date reserveTimeStart;
 
    @JsonFormat(shape=JsonFormat.Shape.STRING,pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
    @ApiModelProperty(value="结束时间")
    private Date reserveTimeEnd;
 
    @ApiModelProperty(value = "是否禁用 0:未冻结,1:冻结")
    private String isProhibit;
 
    @ApiModelProperty(value="第几页",required=true)
    private int page;
 
    @ApiModelProperty(value="每一页数量",required=true)
    private int limit;
}