啊鑫
2024-07-09 0552fcc8cb73fc3021e2915129f55a42ed3f20e5
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#region
 
using System;
using System.Data;
using CSFrameworkV5.Common;
using CSFrameworkV5.Core;
 
#endregion
 
namespace CSFrameworkV5.Business
{
    public class bllUnknow : bllBaseBusiness
    {
        public override bool ApprovalBusiness(DataRow summaryRow)
        {
            Msg.Warning("请实现功能!");
 
            return false;
        }
 
        protected override void ClearAppInfo(DataRow summaryRow)
        {
            Msg.Warning("请实现功能!");
        }
 
        public override DataSet CreateSaveData(DataSet sourceData)
        {
            throw new NotImplementedException();
        }
 
        public override bool Delete(string keyValue)
        {
            Msg.Warning("请实现功能!");
            return true;
        }
 
        public override DataTable GetAttachedFiles(string docNo)
        {
            Msg.Warning("请实现功能!");
            return new DataTable();
        }
 
        public override DataSet GetDataByKey(string keyValue, bool resetCurrent)
        {
            Msg.Warning("请实现功能!");
            return new DataSet();
        }
 
        public override bool IsApproved(DataRow summaryRow)
        {
            Msg.Warning("请实现功能!");
            return false;
        }
 
        public override void NewBusiness()
        {
            Msg.Warning("请实现功能!");
        }
 
        public override void NotifyUser()
        {
            Msg.Warning("请实现功能!");
        }
 
        public override SaveResult Update(DataSet saveData)
        {
            Msg.Warning("请实现功能!");
            return SaveResult.CreateDefault();
        }
 
        protected override void UpdateCommonFieldsValue(DataTable detail)
        {
            Msg.Warning("请实现功能!");
        }
    }
}