StockCddMapper.java 1.7 KB

1234567891011121314151617181920212223242526272829303132333435
  1. package com.oqpo.api.mapper.stockmng;
  2. import com.oqpo.api.entity.stockmng.StckCddMgntDtlEntity;
  3. import com.oqpo.api.entity.stockmng.StckCddMgntInfoEntity;
  4. import com.oqpo.api.web.dto.request.GridRequest;
  5. import org.apache.ibatis.annotations.Mapper;
  6. import org.apache.ibatis.annotations.Param;
  7. import java.util.List;
  8. @Mapper
  9. public interface StockCddMapper {
  10. List<StckCddMgntInfoEntity> selectStockCddGridList(@Param("sBrandId") String sBrandId, @Param("sStoreId") String sStoreId,
  11. @Param("sWhsId") String sWhsId, @Param("sLocation") String sLocation,
  12. @Param("sCddDvsn") String sCddDvsn, @Param("fromDt") String fromDt, @Param("toDt") String toDt,
  13. GridRequest gridRequest) throws Exception;
  14. int selectStockCddGridCnt(@Param("sBrandId") String sBrandId, @Param("sStoreId") String sStoreId,
  15. @Param("sWhsId") String sWhsId, @Param("sLocation") String sLocation,
  16. @Param("sCddDvsn") String sCddDvsn, @Param("fromDt") String fromDt, @Param("toDt") String toDt) throws Exception;
  17. int insertStckCddMgntInfo(@Param("userId") String userId, StckCddMgntInfoEntity entity) throws Exception;
  18. int insertStckCddMgntDtl(@Param("userId") String userId, StckCddMgntDtlEntity entity) throws Exception;
  19. StckCddMgntInfoEntity selectStockCddMgntInfo(@Param("cddId") String cddId) throws Exception;
  20. List<StckCddMgntDtlEntity> selectStockCddDtlGridList(@Param("cddId") String cddId, GridRequest gridRequest) throws Exception;
  21. int selectStockCddDtlGridCnt(@Param("cddId") String cddId) throws Exception;
  22. }