| | |
| | | import org.apache.shiro.subject.Subject; |
| | | import org.primefaces.context.RequestContext; |
| | | import org.springframework.beans.factory.annotation.Value; |
| | | import org.springframework.context.annotation.Lazy; |
| | | import org.springframework.stereotype.Controller; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import org.springframework.web.servlet.ModelAndView; |
| | |
| | | public class ApiAction extends BaseAction { |
| | | |
| | | private static Logger logger = Logger.getLogger(ApiAction.class); |
| | | |
| | | @Lazy |
| | | @Resource |
| | | private SysUserService sysUserService; |
| | | @Lazy |
| | | @Resource |
| | | private OpeReagentStatusService opeReagentStatusService; |
| | | @Resource |
| | | private SysReagentService sysReagentService; |
| | | @Lazy |
| | | @Resource |
| | | private SysWarehouseContainerService sysWarehouseContainerService; |
| | | @Lazy |
| | | @Resource |
| | | private SysLaboratoryContainerService sysLaboratoryContainerService; |
| | | @Lazy |
| | | @Resource |
| | | private BaseMetaService baseMetaService; |
| | | @Lazy |
| | | @Resource |
| | | private InterfaceService interfaceService; |
| | | @Lazy |
| | | @Resource |
| | | private SysWarehouseService sysWarehouseService; |
| | | |
| | | @Resource |
| | | private SysWarningService sysWarningService; |
| | | |
| | | @Lazy |
| | | @Resource |
| | | private TempSensorsService tempSensorsService; |
| | | |
| | | @Lazy |
| | | @Resource |
| | | private SysFileService sysFileService; |
| | | @Lazy |
| | | @Resource |
| | | private SysLaboratoryContainerDao sysLaboratoryContainerDao; |
| | | @Lazy |
| | | @Resource |
| | | private SysWarehouseContainerDao sysWarehouseContainerDao; |
| | | @Lazy |
| | | @Resource |
| | | private DangerousEncodeService dangerousEncodeService; |
| | | @Lazy |
| | | @Resource |
| | | private EncodeReplaceDictService encodeReplaceDictService; |
| | | @Lazy |
| | | @Resource |
| | | private SysLaboratoryService sysLaboratoryService; |
| | | @Lazy |
| | | @Resource |
| | | private HazardousWasteService hazardousWasteService; |
| | | @Lazy |
| | | @Resource |
| | | private OpeLaboratoryReserveService opeLaboratoryReserveService; |
| | | @Lazy |
| | | @Resource |
| | | private OpeUseFlowService opeUseFlowService; |
| | | @Value("${institute.url}") |