| | |
| | | @Autowired |
| | | private ProductBomService service; |
| | | |
| | | @ApiOperation("图纸分类检索") |
| | | @ApiOperation("图纸查询分类检索") |
| | | @PostMapping("searchCadDrawer") |
| | | private Response searchCadDrawer(@RequestBody ProductBom productBom, @RequestParam int pageCurr, @RequestParam int pageSize){ |
| | | return service.searchCadDrawer(productBom,pageCurr,pageSize); |
| | |
| | | <mapper namespace="com.whyc.mapper.ProductBomMapper"> |
| | | |
| | | |
| | | <select id="searchCadDrawer" resultType="java.util.List" parameterType="ProductBom"> |
| | | <select id="searchCadDrawer" resultType="ProductBom" parameterType="ProductBom"> |
| | | select distinct * from db_doc.tb_product_bom |
| | | <where> |
| | | 1=1 |