You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
41 lines
1.1 KiB
10 months ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using SiaSun.LMS.Model;
|
||
|
using System.Text;
|
||
|
using System.ServiceModel;
|
||
|
using System.Data;
|
||
|
|
||
|
namespace SiaSun.LMS.Interface
|
||
|
{
|
||
|
[ServiceContract()]
|
||
|
public partial interface I_PDAService
|
||
|
{
|
||
|
#region 操作方法
|
||
|
|
||
|
[OperationContract]
|
||
|
DataTable GetList(string strSQL);
|
||
|
|
||
|
[OperationContract]
|
||
|
object ExecuteScalar(string strSQL);
|
||
|
|
||
|
[OperationContract]
|
||
|
ObjectT GetModel(string statementName, object parameterObject);
|
||
|
|
||
|
[OperationContract]
|
||
|
bool USER_LOGIN(string USER_CODE, string USER_PASSWORD, out SiaSun.LMS.Model.SYS_USER USER);
|
||
|
[OperationContract]
|
||
|
bool ManageCreate(string sClassName, string sMethodName,
|
||
|
SiaSun.LMS.Model.MANAGE_MAIN mMANAGE_MAIN,
|
||
|
List<SiaSun.LMS.Model.MANAGE_LIST> lsMANAGE_LIST,
|
||
|
bool bTrans,
|
||
|
bool bComplete,
|
||
|
bool bAutoSendControl,
|
||
|
out string sResult);
|
||
|
|
||
|
#endregion
|
||
|
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|