luodangjia
2025-01-17 b0cc9bd3619e69fa4c8bbdedebb56435cfd74a8f
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;
}