| | |
| | | import com.bstek.dorado.data.provider.Page; |
| | | import com.ld.igds.drug.service.HDrugLogApplyService; |
| | | import com.ld.igds.models.DrugLogApply; |
| | | import com.ld.igds.models.DrugLogDtl; |
| | | import com.ld.igds.models.DrugLogPeople; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Component; |
| | |
| | | /** |
| | | * drugLogApplyPR#peopleList |
| | | * |
| | | * @param id |
| | | * @param |
| | | * @return |
| | | * @throws Exception |
| | | */ |
| | | @DataProvider |
| | | public List<DrugLogPeople> peopleList(String id) throws Exception { |
| | | Map<String, Object> param = new HashMap<>(); |
| | | param.put("drugLogId", id); |
| | | public List<DrugLogPeople> peopleList(Map<String, Object> param) throws Exception { |
| | | return drugLogApplyService.drugLogPeopleList(param); |
| | | } |
| | | |
| | |
| | | return drugLogApplyService.delDrugLogPeople(data); |
| | | } |
| | | |
| | | /** |
| | | * drugLogApplyPR#peopleList |
| | | * |
| | | * @param |
| | | * @return |
| | | * @throws Exception |
| | | */ |
| | | @DataProvider |
| | | public List<DrugLogDtl> dtlList(Map<String, Object> param) throws Exception { |
| | | return drugLogApplyService.drugLogDtlList(param); |
| | | } |
| | | |
| | | } |