This commit is contained in:
杨晓东 2025-10-31 10:51:35 +08:00
parent b71cd44aca
commit 24d5819e27
2 changed files with 6 additions and 3 deletions

View File

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

View File

@ -1,5 +1,7 @@
package com.shgx.moldmanagement.domain.dto;
import com.shgx.common.core.page.PageDomain;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
@ -23,7 +25,8 @@ public class MoldQueryDTO {
/**
* 查询库位模具详情
*/
public static class SearchLogQueryDTO {
@Data
public static class SearchLogQueryDTO extends PageDomain {
// 模具号
public String moldCode;