| | |
| | | return sysReagentDao.getReagentUnitByReagentId(reagentId); |
| | | } |
| | | |
| | | @Override |
| | | public List<SysReagent> getReagent(String name, String cas, String factory, String specifications, String packing) { |
| | | Map<String, String> params = new HashMap<>(); |
| | | params.put("name", name); |
| | | params.put("cas", cas); |
| | | params.put("factory", factory); |
| | | params.put("specifications", specifications); |
| | | params.put("packing", packing); |
| | | return sysReagentDao.getReagent(params); |
| | | } |
| | | |
| | | |
| | | @Transactional(propagation = Propagation.REQUIRED) |
| | | public int getSysReagentTotalCount(String name, String cas, String supplierId,Integer type) { |