This commit is contained in:
杨晓东 2025-10-31 10:35:13 +08:00
parent 8e4070456b
commit b71cd44aca

View File

@ -120,8 +120,8 @@ public class MoldInfoController extends BaseController
* PDA手动输入模具名称
*/
@GetMapping("/inputInfo/{moldName}")
public AjaxResult inputMoldInfo(@PathVariable("moldName") String moldName)
public TableDataInfo inputMoldInfo(@PathVariable("moldName") String moldName)
{
return success(moldInfoService.inputMoldInfo(moldName));
return getDataTable(moldInfoService.inputMoldInfo(moldName));
}
}