1
yhj
2024-07-24 5e5d945e91568b973faa27d8ab0bcef99fc4a6c5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#region
 
using System.ServiceModel;
 
#endregion
 
namespace CSFrameworkV5.WCFContract
{
    [ServiceContract(Namespace = "http://www.csframework.com")]
    public interface IDataDictService
    {
        [OperationContract]
        bool CheckNoExists(byte[] loginTicket, string keyValue,
            string ORM_TypeName);
 
        [OperationContract]
        bool CheckNoExistsEx(byte[] loginTicket, string keyFieldName,
            string keyValue, string ORM_TypeName);
 
        [OperationContract]
        bool Delete(byte[] loginTicket, string keyValue, string ORM_TypeName);
 
        [OperationContract]
        byte[] GetDataByKey(byte[] loginTicket, string ORM_TypeName,
            string key);
 
        [OperationContract]
        byte[] GetDataDictByDBTableName(byte[] loginTicket, string tableName,
            string DBID);
 
        [OperationContract]
        byte[] GetDataDictByTableName(byte[] loginTicket, string tableName);
 
        [OperationContract]
        byte[] GetEmptyTable(byte[] loginTicket, string databaseName,
            string tableName);
 
        [OperationContract]
        byte[] GetLookupData(byte[] loginTicket, string tableName);
 
        [OperationContract]
        byte[] GetLookupDataByDBTableName(byte[] loginTicket, string tableName,
            string DBID);
 
        [OperationContract]
        byte[] GetLookupDataByTableName(byte[] loginTicket, string tableName);
 
        [OperationContract]
        byte[] GetSummaryData(byte[] loginTicket, string ORM_TypeName);
 
        [OperationContract]
        bool Update(byte[] loginTicket, byte[] bs, string ORM_TypeName);
 
        [OperationContract]
        byte[] UpdateEx(byte[] loginTicket, byte[] bs, string ORM_TypeName);
    }
}