You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
304 B
C#

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
using Txgy.RBS.IServices;
namespace Txgy.RBS.Services
{
public class LoginService : BaseService, ILoginService
{
public LoginService(ISqlSugarClient sqlSugarClient) : base(sqlSugarClient) { }
}
}