/***********************************************************************
* Project: baifenBinfa
* ProjectName: 百分兵法管理系统
* Web: http://chuanyin.com
* Author:
* Email:
* CreateTime: 202403/02
* Description: 暂无
***********************************************************************/
using System.Collections.Generic;
using System.Threading.Tasks;
using CoreCms.Net.Model.Entities;
using CoreCms.Net.Model.FromBody;
using CoreCms.Net.Model.ViewModels.UI;
namespace CoreCms.Net.IServices
{
///
/// 单页 服务工厂接口
///
public interface ICoreCmsPagesServices : IBaseServices
{
///
/// 重写异步插入方法
///
///
///
Task InsertAsync(CoreCmsPages entity);
///
/// 重写异步更新方法
///
///
///
Task UpdateAsync(CoreCmsPages entity);
///
/// 重写删除指定ID的数据
///
///
///
Task DeleteByIdAsync(int id);
///
/// 更新设计
///
///
///
Task UpdateDesignAsync(FmPagesUpdate entity);
///
/// 获取首页数据
///
/// 查询编码
///
Task GetPageConfig(string code);
///
/// 复制生成一个新的数据
///
///
///
Task CopyByIdAsync(int id);
}
}