liuying
2024-12-01 478fa37ec863b2f7eb20ce19ad5cce96072bd4f9
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
 
 
 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
    );
    
     DELETE wms_rbline_runmode ;
INSERT INTO wms_rbline_runmode( 
 [id],
 [CreateUserName],
 [CreateTime],
 [UpdateUserName],
 [UpdateTime],
 [IsDelete]
)
VALUES
    (
        '613664349835335',
        'sys',
        getdate(),
        'sys',
        getdate(),
        0
    );