ewm_company.sql 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. Navicat MySQL Data Transfer
  3. Source Server : localhost_3306
  4. Source Server Version : 50617
  5. Source Host : localhost:3306
  6. Source Database : dm_7in6_com
  7. Target Server Type : MYSQL
  8. Target Server Version : 50617
  9. File Encoding : 65001
  10. Date: 2018-07-28 12:40:04
  11. */
  12. SET FOREIGN_KEY_CHECKS=0;
  13. -- ----------------------------
  14. -- Table structure for `ewm_company`
  15. -- ----------------------------
  16. DROP TABLE IF EXISTS `ewm_company`;
  17. CREATE TABLE `ewm_company` (
  18. `id` int(11) NOT NULL AUTO_INCREMENT,
  19. `company_name` varchar(20) DEFAULT NULL COMMENT '生产厂商名称',
  20. `postcode` tinyint(6) DEFAULT NULL COMMENT '邮政编码',
  21. `phone` varchar(20) DEFAULT NULL COMMENT '联系电话',
  22. `company_addres` varchar(40) DEFAULT NULL COMMENT '生产厂商地址',
  23. `stauts` tinyint(1) DEFAULT NULL COMMENT '生产厂商状态(1:正常;2:异常)',
  24. `addtime` int(11) DEFAULT NULL COMMENT '添加时间',
  25. PRIMARY KEY (`id`)
  26. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  27. -- ----------------------------
  28. -- Records of ewm_company
  29. -- ----------------------------