package com.ruoyi.shop.domain.dto;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* @ClassName StaffCustomerDto
|
* @Description TODO
|
* @Author jqs
|
* @Date 2023/8/22 14:44
|
* @Version 1.0
|
*/
|
@Data
|
public class StaffCustomerDto {
|
|
|
/**
|
* 客户姓名
|
*/
|
@ApiModelProperty(value = "客户姓名 ")
|
private String customerName;
|
|
/**
|
* 客户电话
|
*/
|
@ApiModelProperty(value = "客户电话")
|
private String customerMobile;
|
}
|