26 lines
633 B
C#
26 lines
633 B
C#
using Gatedge.K3Cloud.Utils.Model.K3Request;
|
|
using Gatedge.K3Cloud.Utils.Model.K3Result;
|
|
using Gatedge.ScanCode.Models.Vo;
|
|
|
|
namespace Gatedge.ScanCode.Services.IServices
|
|
{
|
|
/// <summary>
|
|
/// 版本控制接口
|
|
/// </summary>
|
|
public interface IVsersionService
|
|
{
|
|
/// <summary>
|
|
/// 单据查看
|
|
/// </summary>
|
|
/// <param name="param"></param>
|
|
/// <returns></returns>
|
|
public AppVersionVo View(View param);
|
|
|
|
/// <summary>
|
|
/// 列表接口
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public ListResult List(Query queryParam);
|
|
}
|
|
}
|