对比新文件 |
| | |
| | | package com.gk.firework.Service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.gk.firework.Domain.ProductLocusInfo; |
| | | import com.gk.firework.Domain.Vo.ProductLocusVo; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author : jingjy |
| | | * @date : 2021/3/24 14:33 |
| | | */ |
| | | public interface ProductLocusService extends IService<ProductLocusInfo> { |
| | | int insertProductLocus(ProductLocusInfo productLocusInfo); |
| | | |
| | | int insertBatch(List<ProductLocusInfo> productLocusInfos); |
| | | |
| | | List<ProductLocusVo> getFlow(String directionCode); |
| | | |
| | | int saveBatchLocus(List<ProductLocusInfo> productLocuses); |
| | | |
| | | } |