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 SpecsService : BaseService<SpecsEntity>, ISpecsService
|
|
|
|
|
|
{
|
|
|
|
|
|
public SpecsService(IRepository<SpecsEntity> repository) : base(repository)
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|