|
|
|
@ -1,6 +1,5 @@ |
|
|
|
package org.springblade.wms.service; |
|
|
|
package org.springblade.wms.service; |
|
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.Wrapper; |
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
|
|
|
import org.springblade.core.mp.base.BaseService; |
|
|
|
import org.springblade.core.mp.base.BaseService; |
|
|
|
import org.springblade.wms.excel.StGoodsExtExcel; |
|
|
|
import org.springblade.wms.excel.StGoodsExtExcel; |
|
|
|
@ -36,12 +35,14 @@ public interface IStGoodsExtService extends BaseService<StGoodsExt> { |
|
|
|
* @param queryWrapper 查询条件 |
|
|
|
* @param queryWrapper 查询条件 |
|
|
|
* @return List<StGoodsExtExcel> |
|
|
|
* @return List<StGoodsExtExcel> |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
List<StGoodsExtExcel> exportStGoodsExt(Wrapper<StGoodsExt> queryWrapper); |
|
|
|
// List<StGoodsExtExcel> exportStGoodsExt(Wrapper<StGoodsExt> queryWrapper);
|
|
|
|
|
|
|
|
|
|
|
|
IPage<StGoodsExtVO> selectGoodsExtPage(IPage<StGoodsExtVO> page, Map<String, Object> stGoodsExt); |
|
|
|
IPage<StGoodsExtVO> selectGoodsExtPage(IPage<StGoodsExtVO> page, Map<String, Object> stGoodsExt); |
|
|
|
|
|
|
|
|
|
|
|
Boolean getSpecial(Long goodsId); |
|
|
|
Boolean getSpecial(Long goodsId); |
|
|
|
|
|
|
|
|
|
|
|
void executeGoodsStatusUpdate(); |
|
|
|
void executeGoodsStatusUpdate(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<StGoodsExtExcel> exportStGoodsExt(Map<String, Object> stGoodsExt); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|