Administrator
2025-07-22 317bb4aefb93d4e3797b8a3fd1ac9e82665beb48
1
2
3
4
5
6
7
8
9
10
11
12
13
package cc.mrbird.febs.mall.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "ApiDoctorListDto", description = "参数接收类")
public class ApiDoctorListDto {
 
    @ApiModelProperty(value = "绑定人电话")
    private String phone;
}