| | |
| | | import com.zy.asrs.entity.*; |
| | | import com.zy.asrs.entity.param.OrderDomainParam; |
| | | import com.zy.asrs.entity.result.WrkTraceVo; |
| | | import com.zy.asrs.mapper.OrderMapper; |
| | | import com.zy.asrs.service.*; |
| | | import com.zy.common.model.DetlDto; |
| | | import com.zy.common.web.BaseController; |
| | |
| | | private FlowLogService flowLogService; |
| | | @Autowired |
| | | private ConfigService configService; |
| | | @Autowired |
| | | private OrderMapper orderMapper; |
| | | |
| | | |
| | | @GetMapping("/code/type/list") |
| | | public R docTypeLis2t(@RequestParam String threeCode) { |
| | | List<String> pakins = orderMapper.selectThreeCode(threeCode); |
| | | return R.ok().add(pakins); |
| | | } |
| | | |
| | | @GetMapping("/doc/type/list") |
| | | @Transactional |