1
phpcjl
2024-12-18 5d6292b0feff9099a24a1bc2c9f0900f1980e2db
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.ruoyi.order.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author zhibing.pu
 * @Date 2024/11/25 12:08
 */
@Data
@ApiModel
public class VerifiableShopVo {
    @ApiModelProperty("门店id")
    private Integer id;
    @ApiModelProperty("门店名称")
    private String name;
}