|
|
@@ -2,6 +2,7 @@ |
|
|
|
using BPA.SAAS.Manage.Application.Device.Dtos.ProductTopics; |
|
|
|
using BPA.SAAS.Manage.Application.Device.Interface; |
|
|
|
using BPA.SAAS.Manage.Core.Base; |
|
|
|
using BPA.SAAS.Manage.Core.Product; |
|
|
|
using Microsoft.AspNetCore.Components.Forms; |
|
|
|
using System; |
|
|
|
using System.Collections.Generic; |
|
|
@@ -30,6 +31,16 @@ namespace BPA.SAAS.Manage.Application.Device |
|
|
|
return await _productTopicsService.GetProductTopicsPage(inputDto); |
|
|
|
} |
|
|
|
/// <summary> |
|
|
|
/// 查询topics列表 |
|
|
|
/// </summary> |
|
|
|
/// <param name="inputDto"></param> |
|
|
|
/// <returns></returns> |
|
|
|
[HttpPost("/api/producttopics/list")] |
|
|
|
public async Task<List<BPA_ProductTopics>> GetProductTopicList(ProductTopicsQueryDto inputDto) |
|
|
|
{ |
|
|
|
return await _productTopicsService.GetProductTopicList(inputDto); |
|
|
|
} |
|
|
|
/// <summary> |
|
|
|
/// 添加 |
|
|
|
/// </summary> |
|
|
|
/// <param name="inputDto"></param> |
|
|
|