puzhibing
2023-10-23 ed0c579e95ba6c2616e112f87c48b11ef4c0e9d7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.ruoyi.system.api.domain.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class ShopRelUserVo {
 
    @ApiModelProperty(value="商户id")
    private Long shopId;
 
    @ApiModelProperty(value="用户姓名")
    private String userName;
}