ChouBox/ChouBox.Code/Goods/GoodsBLL.cs
2025-04-23 19:20:23 +08:00

27 lines
477 B
C#

using ChouBox.Code.AppExtend;
using ChouBox.Model.Entities;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Primitives;
using Newtonsoft.Json;
using StackExchange.Redis;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ChouBox.Code.Goods;
public class GoodsBLL : ChouBoxCodeBase
{
public GoodsBLL(IServiceProvider serviceProvider) : base(serviceProvider)
{
}
}