This commit is contained in:
linfso 2024-06-11 20:23:38 +08:00
parent fb050c19e8
commit 9c07ea2866

View File

@ -270,6 +270,15 @@ public class EmisTmsScanRecordController extends EmisBaseController
@GetMapping("/getTraceListByBillCode")
public TableDataInfo getTraceListByBillCode(String billCode)
{
List<EmisTmsScanRecord> list = emisTmsScanRecordService.getTraceListByBillCode(billCode);
return getDataTable(list);
}
/**
* 导出TMS扫描记录列表
*/