|
|
@ -2,12 +2,8 @@ package cn.estsh.i3plus.pojo.wms.repository;
|
|
|
|
|
|
|
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
|
|
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
|
|
|
import cn.estsh.i3plus.pojo.wms.bean.WmsActionStepCallParam;
|
|
|
|
import cn.estsh.i3plus.pojo.wms.bean.WmsActionStepCallParam;
|
|
|
|
import org.springframework.data.jpa.repository.Query;
|
|
|
|
|
|
|
|
import org.springframework.data.repository.query.Param;
|
|
|
|
|
|
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* @Description :
|
|
|
|
* @Description :
|
|
|
|
* @Reference :
|
|
|
|
* @Reference :
|
|
|
@ -17,6 +13,6 @@ import java.util.List;
|
|
|
|
**/
|
|
|
|
**/
|
|
|
|
@Repository
|
|
|
|
@Repository
|
|
|
|
public interface WmsActionStepCallParamRepository extends BaseRepository<WmsActionStepCallParam, Long> {
|
|
|
|
public interface WmsActionStepCallParamRepository extends BaseRepository<WmsActionStepCallParam, Long> {
|
|
|
|
@Query("select ascp from wms_action_step_call_param ascp inner join wms_action_group_details agd on ascp.agdId=agd.id where agd.agId =: agId")
|
|
|
|
// @Query("select ascp from WMS_ACTION_STEP_CALL_PARAM ascp inner join wms_action_group_details agd on ascp.agdId=agd.id where agd.agId =: agId")
|
|
|
|
List<WmsActionStepCallParam> queryWmsActionStepCallParamsByAgId(@Param("agId") Long agId);
|
|
|
|
// List<WmsActionStepCallParam> queryWmsActionStepCallParamsByAgId(@Param("agId") Long agId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|