SocialFansInfoService.cs 331 B

1234567891011
  1. using Infrastructure.Attribute;
  2. using ZR.Model.social;
  3. using ZR.Service.Social.IService;
  4. namespace ZR.Service.Social
  5. {
  6. [AppService(ServiceType = typeof(ISocialFansInfoService), ServiceLifetime = LifeTime.Transient)]
  7. public class SocialFansInfoService : BaseService<SocialFansInfo>, ISocialFansInfoService
  8. {
  9. }
  10. }