emoticon_api/ARW.Repository/Business/GoodsManager/GoodsServicess/GoodsServicesRels/GoodsServicesRelRepository.cs
2023-06-24 23:21:02 +08:00

20 lines
573 B
C#

using System;
using Infrastructure.Attribute;
using ARW.Repository.System;
using ARW.Model.Models.Business.GoodsManager.GoodsServicess.GoodsServicesRels;
namespace ARW.Repository.Business.GoodsManager.GoodsServicess.GoodsServicesRels
{
/// <summary>
/// 商品服务与承诺关系表仓储
///
/// @author lwh
/// @date 2023-06-18
/// </summary>
[AppService(ServiceLifetime = LifeTime.Transient)]
public class GoodsServicesRelRepository : BaseRepository<GoodsServicesRel>
{
#region
#endregion
}
}