| 12345678910111213141516171819202122232425 |
- create table kwf_driver_conduct_rules
- (
- id bigint NOT NULL AUTO_INCREMENT COMMENT '主键',
- net_id bigint NOT NULL comment '企业id',
- not_on_time_arrive int NOT NULL comment '未按时到场(违规次数/扣分)',
- illegal_cancel_order int NOT NULL comment '违规取消运单(违规次数/扣分)',
- unload_serious_timeout int NOT NULL comment '卸货严重超时(违规次数/扣分)',
- fake_unload int NOT NULL comment '虚假卸货(违规次数/扣分)',
- document_error_missing int NOT NULL comment '单据错误/缺失(违规次数/扣分)',
- continuous_on_time_arrive int NOT NULL comment '连续按时到场(达标次数/加分)',
- continuous_on_time_unload int NOT NULL comment '连续准时卸货(达标次数/加分)',
- continuous_accurate_unload int NOT NULL comment '连续准确填写卸货信息(达标次数/加分)',
- del_flag int NOT NULL DEFAULT '0' COMMENT '是否删除(0未删除,1删除)',
- create_time datetime NOT NULL default CURRENT_TIMESTAMP comment '创建时间',
- update_time datetime NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP comment '更新时间',
- create_user bigint NOT NULL DEFAULT '-1' comment '创建人',
- update_user bigint NOT NULL DEFAULT '-1' comment '更新人',
- PRIMARY KEY (`id`) USING BTREE
- ) comment '司机行为规则表';
|