edit-order-opt

This commit is contained in:
lccsw
2021-12-30 17:09:11 +08:00
committed by lccsw
parent 20c3bf1f52
commit 669890eab5
85 changed files with 10333 additions and 281 deletions
+2
View File
@@ -206,6 +206,8 @@ create table lc_sys_company (
alter table lc_sys_company add column credit_code varchar(18) not null default '' comment '统一社会信用代码' after short;
alter table lc_sys_company add column wx_mchid varchar(10) not null default '' comment '微信商户号' after credit_code;
alter table lc_sys_company add column img_seal varchar(128) not null default '' comment '公章' after wx_mchid;
alter table lc_sys_company add column city_id int(10) unsigned not null default '0' comment '城市id' after wx_mchid;
alter table lc_sys_company add column type tinyint(1) not null default 0 comment '公司类型(0服务公司 1销售公司)' after status;