edit-order-opt
This commit is contained in:
@@ -135,3 +135,23 @@ create table lc_app_deal_apply (
|
||||
u_time timestamp not null default current_timestamp on update current_timestamp comment '更新时间',
|
||||
primary key (id)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='分销-申请表';
|
||||
|
||||
-- ----------------------------
|
||||
-- Title:审核数据
|
||||
-- Author:lcc
|
||||
-- Table:lc_app_checkdata
|
||||
-- ---------------------------
|
||||
create table lc_app_checkdata (
|
||||
id int(10) unsigned not null auto_increment comment '自增id',
|
||||
cf_id int(10) unsigned not null default '0' comment '来源id,详见haodian项目app.sql',
|
||||
app_id int(10) unsigned not null default '0' comment '应用id',
|
||||
type int(10) unsigned not null default '0' comment '审核类型,详见haodian项目app.sql',
|
||||
datatype char(10) not null default '0' comment '数据类型 img video',
|
||||
dataurl char(200) not null default '' comment '资源地址',
|
||||
ifcheck tinyint(1) not null default '0' comment '审核状态,-1审核未通过,0未审核,1审核通过',
|
||||
descrip text not null comment '描述',
|
||||
jsondata text not null comment '附加字段',
|
||||
c_time int(10) unsigned not null default '0' comment '创建时间',
|
||||
u_time timestamp not null default current_timestamp on update current_timestamp,
|
||||
primary key (id)
|
||||
) engine=innodb default charset=utf8mb4 collate=utf8mb4_0900_ai_ci comment='审核数据'
|
||||
|
||||
Reference in New Issue
Block a user