42 lines
1.0 KiB
C#
42 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using ARW.Model;
|
|
using ARW.Model.Dto.Business.Settings.PlatformSpecs;
|
|
using ARW.Model.Models.Business.Settings.PlatformSpecs;
|
|
using ARW.Model.Vo.Business.Settings.PlatformSpecs;
|
|
|
|
namespace ARW.Service.Business.IBusinessService.Settings.PlatformSpecs
|
|
{
|
|
/// <summary>
|
|
/// 平台资质与规范接口类
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-10-22
|
|
/// </summary>
|
|
public interface IPlatformSpecService : IBaseService<PlatformSpec>
|
|
{
|
|
/// <summary>
|
|
/// 获取平台资质与规范分页列表
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
Task<PagedInfo<PlatformSpecVo>> GetPlatformSpecList(PlatformSpecQueryDto parm);
|
|
|
|
|
|
/// <summary>
|
|
/// 添加或修改平台资质与规范
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
Task<string> AddOrUpdatePlatformSpec(PlatformSpec parm);
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|