2022-10-18 19:27:58 +08:00
|
|
|
|
using SqlSugar;
|
2023-01-01 23:06:11 +08:00
|
|
|
|
using Yi.Framework.Interface.SHOP;
|
|
|
|
|
|
using Yi.Framework.Model.SHOP.Entitys;
|
2022-10-18 19:27:58 +08:00
|
|
|
|
using Yi.Framework.Repository;
|
2023-01-01 23:06:11 +08:00
|
|
|
|
using Yi.Framework.Service.Base;
|
2022-10-18 19:27:58 +08:00
|
|
|
|
|
2023-01-01 23:06:11 +08:00
|
|
|
|
namespace Yi.Framework.Service.SHOP
|
2022-10-18 19:27:58 +08:00
|
|
|
|
{
|
|
|
|
|
|
public partial class SpecsGroupService : BaseService<SpecsGroupEntity>, ISpecsGroupService
|
|
|
|
|
|
{
|
|
|
|
|
|
public SpecsGroupService(IRepository<SpecsGroupEntity> repository) : base(repository)
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|