wpf_tool_online/api/ARW.Repository/System/SysPostRepository.cs
2023-05-31 21:06:42 +08:00

16 lines
340 B
C#

using Infrastructure.Attribute;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ARW.Model.System;
namespace ARW.Repository.System
{
[AppService(ServiceLifetime = LifeTime.Transient)]
public class SysPostRepository : BaseRepository<SysPost>
{
}
}