20 lines
454 B
C#
20 lines
454 B
C#
using System;
|
|
using Infrastructure.Attribute;
|
|
using ARW.Repository.System;
|
|
using ARW.Model.Models.Business.Carts;
|
|
|
|
namespace ARW.Repository.Business.Carts
|
|
{
|
|
/// <summary>
|
|
/// 购物车记录仓储
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-07-20
|
|
/// </summary>
|
|
[AppService(ServiceLifetime = LifeTime.Transient)]
|
|
public class CartRepository : BaseRepository<Cart>
|
|
{
|
|
#region 业务逻辑代码
|
|
#endregion
|
|
}
|
|
} |