17 lines
406 B
C#
17 lines
406 B
C#
using WX.CRM.Model.MAP;
|
|
|
|
namespace WX.CRM.IBLL.Soft
|
|
{
|
|
public interface ISOFT_REGANDORDERLINK
|
|
{
|
|
SOFT_REGANDORDERLINK RegToUP(string userName, string mobile, string ch, string platForm, string guid, string password, decimal eid);
|
|
|
|
bool HasUserName(string userName);
|
|
|
|
SOFT_USERINFO GetUserInfo(string userName);
|
|
|
|
|
|
string EncyptData(string data, string key);
|
|
}
|
|
}
|