18 lines
394 B
C#
18 lines
394 B
C#
using Air.Model;
|
|
using Mini.Model;
|
|
using Mini.Model.Entity;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Mini.Services.Bas
|
|
{
|
|
public interface IBasInnerUserSaltService : IDependency
|
|
{
|
|
int Create(Bas_InnerUserSalt model);
|
|
Bas_InnerUserSalt GetBasInnerUserSalt(int uId, int eId);
|
|
}
|
|
}
|