1
phpcjl
2024-12-19 09566cd515ef2b3382814b998a68aa5b1a2957ba
ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/vo/GetGoodsShopByGoodsIds.java
New file
@@ -0,0 +1,21 @@
package com.ruoyi.other.api.vo;
import lombok.Data;
import java.util.List;
/**
 * @author zhibing.pu
 * @Date 2024/12/2 10:18
 */
@Data
public class GetGoodsShopByGoodsIds {
   /**
    * 门店id
    */
   private Integer shopId;
   /**
    * 商品id集合
    */
   private List<Integer> goodsIds;
}