## 1.数据库(erp_supplier) ### 1.1 店铺管理员(erp_supplier.shops_admin) #### sql 脚本 ```sql CREATE TABLE `shops_admin` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `shops_id` int(11) unsigned NOT NULL, `admin_pid` int(11) unsigned NOT NULL, `identity` tinyint(3) unsigned DEFAULT '1' COMMENT '1、店长 2、供应商 3、店员', `create_time` int(10) unsigned NOT NULL DEFAULT '0', `update_time` int(10) unsigned NOT NULL DEFAULT '0', `status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1、正常 2、已删除', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=836 DEFAULT CHARSET=utf8; ``` #### 说明:增加标识字段status 1 表示正常记录 2 表示已删除记录