去掉supermarket_material表

This commit is contained in:
sxu 2025-06-30 17:26:20 +08:00
parent f8b857ee93
commit 8081718c62
2 changed files with 1 additions and 2 deletions

View File

@ -102,7 +102,7 @@ public class CookMaterialTypeController extends BaseController {
} }
@ApiOperation(value = "原料树形结构") @ApiOperation(value = "原料树形结构")
@SysLog(title = "原料树形结构", businessType = OperaType.QUERY, logType = 1,module = "经研院食堂->原料管理->原料树形结构") @SysLog(title = "原料树形结构", businessType = OperaType.QUERY, logType = 1,module = "原料管理->原料树形结构")
@PostMapping("/getTree") @PostMapping("/getTree")
public AjaxResult getTree(@RequestBody CookMaterialType cookMaterialType) { public AjaxResult getTree(@RequestBody CookMaterialType cookMaterialType) {
return success(cookMaterialTypeService.getTree(cookMaterialType)); return success(cookMaterialTypeService.getTree(cookMaterialType));

View File

@ -59,7 +59,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<foreach item="materialTypeId" collection="materialTypeIds" open="(" separator="," close=")"> <foreach item="materialTypeId" collection="materialTypeIds" open="(" separator="," close=")">
#{materialTypeId} #{materialTypeId}
</foreach> </foreach>
<if test="goodsType != null "> and goods_type = #{goodsType}</if>
</where> </where>
</select> </select>