package com.ruoyi.system.api.domain.dto;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* @ClassName MgtShopStaffEditDto
|
* @Description TODO
|
* @Author jqs
|
* @Date 2023/7/19 18:59
|
* @Version 1.0
|
*/
|
@Data
|
public class MgtShopStaffEditDto {
|
|
|
|
@ApiModelProperty(value = "用户id")
|
private Long userId;
|
|
@ApiModelProperty(value = "员工姓名")
|
private String staffName;
|
|
@ApiModelProperty(value = "员工电话")
|
private String staffMobile;
|
|
@ApiModelProperty(value = "员工头像")
|
private String staffAvatar;
|
}
|