shop/CoreCms.Net.IServices/User/ICoreCmsUserShipServices.cs
2025-10-11 11:19:23 +08:00

37 lines
1.3 KiB
C#

/***********************************************************************
* Project: CoreCms
* ProjectName: 核心内容管理系统
* Web: https://www.corecms.net
* Author: 大灰灰
* Email: jianweie@163.com
* CreateTime: 2021/1/31 21:45:10
* Description: 暂无
***********************************************************************/
using System.Threading.Tasks;
using CoreCms.Net.Model.Entities;
using CoreCms.Net.Model.ViewModels.UI;
namespace CoreCms.Net.IServices
{
/// <summary>
/// 用户地址表 服务工厂接口
/// </summary>
public interface ICoreCmsUserShipServices : IBaseServices<CoreCmsUserShip>
{
/// <summary>
/// 事务重写异步插入方法
/// </summary>
/// <param name="entity"></param>
/// <returns></returns>
new Task<WebApiCallBack> InsertAsync(CoreCmsUserShip entity);
/// <summary>
/// 重写异步更新方法方法
/// </summary>
/// <param name="entity"></param>
/// <returns></returns>
new Task<AdminUiCallBack> UpdateAsync(CoreCmsUserShip entity);
}
}