key1_beacon_api/ARW.Repository/Business/GoodsManager/Goodss/GoodsRepository.cs
2023-06-24 23:21:02 +08:00

20 lines
475 B
C#

using System;
using Infrastructure.Attribute;
using ARW.Repository.System;
using ARW.Model.Models.Business.GoodsManager.Goodss;
namespace ARW.Repository.Business.GoodsManager.Goodss
{
/// <summary>
/// 商品仓储
///
/// @author lwh
/// @date 2023-06-19
/// </summary>
[AppService(ServiceLifetime = LifeTime.Transient)]
public class GoodsRepository : BaseRepository<Goods>
{
#region
#endregion
}
}