ZrAdminNetCore/ZR.Repository/System/SysPostRepository.cs
2021-09-27 16:07:55 +08:00

16 lines
338 B
C#

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