123456789101112131415161718 |
- create table `form_share`
- (
- id varchar(64) primary key not null,
- company_id int unsigned not null,
- biz_id int unsigned not null comment '业务单据ID',
- biz_code varchar(100) comment '业务单据编号',
- biz_type varchar(100) comment '业务类型',
- view_type varchar(100) comment '视图类型',
- send_to varchar(30) comment '转发到的地方',
- title varchar(100) comment '标题',
- app_id varchar(30) comment 'saas应用',
- creator_id int unsigned,
- creator_name varchar(100),
- create_time datetime,
- updater_id int unsigned,
- updater_name varchar(100),
- update_time datetime
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='表单分享记录';
|