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
|
|
| DELETE Base_BasicDataSet where BasicDataType='1';
| INSERT INTO Base_BasicDataSet(
| [BasicDataType],
| [BasicDataValue],
| [BasicDataUnit],
| [OperationRemark],
| [CreateBy],
| [CreateTime],
| [ModifyBy],
| [ModifyTime]
| )
| VALUES
| (
| '1', -- 调度系统启动相关
| '000000', -- 有值就代表有机器启动了调度系统 (000000是默认的空值)
| '',
| '调度系统启动相关',
| 'sys',
| getdate(),
| 'sys',
| getdate()
| );
|
|
|
|
|
|