diff --git a/doc/RCS数据库结构.md b/doc/RCS数据库结构.md index 5f45296..9f11e25 100644 --- a/doc/RCS数据库结构.md +++ b/doc/RCS数据库结构.md @@ -84,6 +84,7 @@ create table lcc_env_info env_name varchar(50) not null comment '环境名称', is_virtual boolean not null default false comment '是否虚拟环境', env_payload varchar(3000) not null default 'N/A' comment '环境负载信息', + auto_start boolean not null default false comment '是否自动启动', create_at timestamp not null comment '创建时间', create_by varchar(50) not null comment '创建人', update_at timestamp null comment '更新时间', @@ -92,8 +93,8 @@ create table lcc_env_info ); create index idx_lcc_env_info_1 on lcc_env_info (world_id); -insert into lcc_env_info (env_id, world_id, env_name, is_virtual, env_payload, create_at, create_by, update_at, update_by) -values (1, 'example1', '台湾展会生产', false, 'N/A', now(), 'system', now(), 'system'), - (2, 'example1', '虚拟仿真', true, 'N/A', now(), 'system', now(), 'system'); +insert into lcc_env_info (env_id, world_id, env_name, is_virtual, env_payload, auto_start, create_at, create_by, update_at, update_by) +values (1, 'example1', '台湾展会生产', false, 'N/A', true, now(), 'system', now(), 'system'), + (2, 'example1', '虚拟仿真', true, 'N/A', false, now(), 'system', now(), 'system'); ``` diff --git a/src/editor/ModelMain.vue b/src/editor/ModelMain.vue index e845b7d..6975e40 100644 --- a/src/editor/ModelMain.vue +++ b/src/editor/ModelMain.vue @@ -22,10 +22,10 @@