Files
shgx_tz_mes_backend_sync/ZR.Repository/System/SysPostRepository.cs

16 lines
338 B
C#
Raw Normal View History

2021-09-27 16:07:55 +08:00
using Infrastructure.Attribute;
using System;
2021-09-27 08:06:09 +08:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ZR.Model.System;
namespace ZR.Repository.System
{
2021-09-27 16:07:55 +08:00
[AppService(ServiceLifetime = LifeTime.Transient)]
2021-09-27 08:06:09 +08:00
public class SysPostRepository : BaseRepository<SysPost>
{
}
}