You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
422 B
15 lines
422 B
using Znyc.CloudCar.Model.Entities;
|
|
|
|
namespace Znyc.CloudCar.IRepository.Equipment
|
|
{
|
|
public interface IEquipmentRepository : IRepositoryBase<EquipmentEntity>
|
|
{
|
|
/// <summary>
|
|
/// 同步浏览量
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <param name="pageview"></param>
|
|
/// <returns></returns>
|
|
Task<int> UpdatePageView(long id, int pageview);
|
|
}
|
|
}
|