1.
phpcjl
2024-12-10 1690d4d06b0c20b3606e50e0844ef67e07947a0d
ruoyi-service/ruoyi-order/src/main/java/com/ruoyi/order/vo/VerifiableShopVo.java
New file
@@ -0,0 +1,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;
}