SttlReqMapper.java 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package com.oqpo.api.mapper.sttlmng;
  2. import com.oqpo.api.entity.loanmng.LoanMgntBaseInfoEntity;
  3. import com.oqpo.api.entity.rtnmng.RtnProcInfoPtclEntity;
  4. import com.oqpo.api.entity.settmng.StlMgntBaseInfoEntity;
  5. import com.oqpo.api.entity.settmng.StlMgntDtlPtclEntity;
  6. import com.oqpo.api.entity.stockmng.WhsProcInfoPtclEntity;
  7. import com.oqpo.api.web.dto.request.GridRequest;
  8. import org.apache.ibatis.annotations.Mapper;
  9. import org.apache.ibatis.annotations.Param;
  10. import java.util.List;
  11. @Mapper
  12. public interface SttlReqMapper {
  13. List<StlMgntDtlPtclEntity> selectSttlReqGridList(@Param("sBrandId") String sBrandId, @Param("sStoreId") String sStoreId, @Param("sItemNm") String sItemNm,
  14. @Param("fromDt") String fromDt, @Param("toDt") String toDt, GridRequest gridRequest) throws Exception;
  15. int selectSttlReqGridCnt(@Param("sBrandId") String sBrandId, @Param("sStoreId") String sStoreId, @Param("sItemNm") String sItemNm,
  16. @Param("fromDt") String fromDt, @Param("toDt") String toDt) throws Exception;
  17. StlMgntBaseInfoEntity selectStlMgntBaseInfo(@Param("sttlMgntUnqNo") String sttlMgntUnqNo) throws Exception;
  18. List<StlMgntDtlPtclEntity> selectStlMgntDtlPtclList(@Param("sttlMgntUnqNo") String sttlMgntUnqNo) throws Exception;
  19. StlMgntDtlPtclEntity selectStlMgntDtlPtcl(@Param("sttlMgntUnqNo") String sttlMgntUnqNo, @Param("sttlMgntDtlNo") String sttlMgntDtlNo) throws Exception;
  20. int insertStlMgntBaseInfo(@Param("userId") String userId, StlMgntBaseInfoEntity entity) throws Exception;
  21. int insertStlMgntDtlPtcl(@Param("userId") String userId, StlMgntDtlPtclEntity entity) throws Exception;
  22. int updateStlMgntBaseInfo(@Param("userId") String userId, StlMgntBaseInfoEntity entity) throws Exception;
  23. int updateStlMgntDtlPtcl(@Param("userId") String userId, StlMgntDtlPtclEntity entity) throws Exception;
  24. int deleteStlMgntBaseInfo(@Param("userId") String userId, StlMgntBaseInfoEntity entity) throws Exception;
  25. int deleteStlMgntDtlPtcl(@Param("userId") String userId, StlMgntDtlPtclEntity entity) throws Exception;
  26. WhsProcInfoPtclEntity selectWhsProcInfoPtcl(@Param("whsMgntUnqNo") String whsMgntUnqNo) throws Exception;
  27. RtnProcInfoPtclEntity selectRtnProcInfoPtcl(@Param("rtnMgntUnqNo") String rtnMgntUnqNo) throws Exception;
  28. int updateWhsProcInfoPtcl4SttlReq(@Param("userId") String userId, WhsProcInfoPtclEntity entity) throws Exception;
  29. int updateRtnProcInfoPtcl4SttlReq(@Param("userId") String userId, RtnProcInfoPtclEntity entity) throws Exception;
  30. int updateLoanMgntBaseInfo4SttlReqProc(@Param("userId") String userId, LoanMgntBaseInfoEntity entity) throws Exception;
  31. int updateWhsProcInfoPtcl4SttlReqProc(@Param("userId") String userId, StlMgntDtlPtclEntity entity) throws Exception;
  32. int updateRtnProcInfoPtcl4SttlReqProc(@Param("userId") String userId, StlMgntDtlPtclEntity entity) throws Exception;
  33. int updateStlMgntBaseInfo4SttlReqProc(@Param("userId") String userId, StlMgntBaseInfoEntity entity) throws Exception;
  34. int updateStlMgntBaseInfo4SttlConfirm(@Param("userId") String userId, StlMgntBaseInfoEntity entity) throws Exception;
  35. int updateStlMgntBaseInfo4Rcpt(@Param("userId") String userId, StlMgntBaseInfoEntity entity) throws Exception;
  36. int updateStlMgntBaseInfo4SttlReject(@Param("userId") String userId, StlMgntBaseInfoEntity entity) throws Exception;
  37. }