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
|
|
| DELETE wms_sys_basic_data where BasicDataType='1';
| INSERT INTO wms_sys_basic_data(
| [id],
| [BasicDataType],
| [BasicDataValue],
| [OperationRemark],
| [CreateUserName],
| [CreateTime],
| [UpdateUserName],
| [UpdateTime],
| [IsDelete]
| )
| VALUES
| (
| '613664349835334',
| '1', -- 调度系统启动相关
| '000000', -- 有值就代表有机器启动了调度系统 (000000是默认的空值)
| '调度系统启动相关',
| 'sys',
| getdate(),
| 'sys',
| getdate(),
| 0
| );
|
|
|
|
|