package com.doumee.dao.web.request;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* Created by IntelliJ IDEA.
|
*
|
* @Author : Rk
|
* @create 2023/3/23 9:50
|
*/
|
@Data
|
@ApiModel("我的客户请求类")
|
public class MyCustomerRequest {
|
|
|
@ApiModelProperty(value = "用户昵称、手机号")
|
private String memberIfo;
|
|
|
}
|