self_mall_api/ARW.Repository/System/SysTasksQzRepository.cs
2023-06-02 21:15:33 +08:00

16 lines
345 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 SysTasksQzRepository: BaseRepository<SysTasksQz>
{
}
}