厂商信息

This commit is contained in:
小魔仙
2024-12-21 15:15:09 +08:00
parent 664cc4e3bf
commit da6669362a
6 changed files with 81 additions and 21 deletions

View File

@ -49,6 +49,18 @@ public class DeviceManufacturersController extends BaseController
List<DeviceManufacturers> list = deviceManufacturersService.selectDeviceManufacturersList(deviceManufacturers);
return getDataTable(list);
}
/**
* 查询设备厂家信息列表
*/
@PreAuthorize("@ss.hasPermi('renke:manufacturers:list')")
@GetMapping("/type")
@ApiOperation("查询设备厂家信息列表")
public TableDataInfo listType(String type)
{
startPage();
List<DeviceManufacturers> list = deviceManufacturersService.selectDeviceManufacturersListType(type);
return getDataTable(list);
}
/**
* 导出设备厂家信息列表