package com.oying.modules.rider.domain.dto;
|
|
import lombok.Data;
|
import io.swagger.annotations.ApiModelProperty;
|
|
/**
|
* @author pxb
|
* @date 2025-07-01
|
**/
|
@Data
|
public class RiderInfoQueryCriteria{
|
|
@ApiModelProperty(value = "页码", example = "1")
|
private Integer page = 1;
|
|
@ApiModelProperty(value = "每页数据量", example = "10")
|
private Integer size = 10;
|
|
@ApiModelProperty(value = "骑手id")
|
private Long riderId;
|
|
@ApiModelProperty(value = "数据来源id")
|
private String sourceId;
|
|
@ApiModelProperty(value = "电话")
|
private String phone;
|
|
@ApiModelProperty(value = "乙方姓名")
|
private String cardName;
|
|
@ApiModelProperty(value = "证件号")
|
private String cardNum;
|
|
@ApiModelProperty(value = "数据来源编号")
|
private String sourceNum;
|
|
@ApiModelProperty(value = "状态0不生效,1生效 其他平台的条件是否满足")
|
private String enabled;
|
|
@ApiModelProperty(value = "数据来源平台(LY,等)")
|
private String sourcePlatform;
|
}
|