18 lines
483 B
C#
18 lines
483 B
C#
|
|
using APT.Infrastructure.Core;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
using APT.Infrastructure.Api;
|
|||
|
|
namespace APT.BaseData.Domain.IServices.Platform
|
|||
|
|
{
|
|||
|
|
public partial interface IPFLastVersionService : ICommonService
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 版本管理-获取上个版本号
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="filter"></param>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
string GetLastVersion(KeywordFilter filter);
|
|||
|
|
}
|
|||
|
|
}
|