Initial commit

This commit is contained in:
易焱
2021-04-18 18:51:51 +08:00
commit ec705f2fa8
3240 changed files with 623103 additions and 0 deletions
@@ -0,0 +1,17 @@
<?php
$this->E_D("DROP TABLE IF EXISTS `db_craft_template`;");
$this->E_C("CREATE TABLE `db_craft_template` (
`template_id` int(20) NOT NULL AUTO_INCREMENT,
`template_name` varchar(255) DEFAULT NULL,
PRIMARY KEY (`template_id`)
) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=utf8");
$this->E_D("replace into `db_craft_template` values('6','精磨外圆-1');");
$this->E_D("replace into `db_craft_template` values('5','粗磨外圆');");
$this->E_D("replace into `db_craft_template` values('4','磨双端面');");
$this->E_D("replace into `db_craft_template` values('7','粗磨孔');");
$this->E_D("replace into `db_craft_template` values('8','精研外圆');");
$this->E_D("replace into `db_craft_template` values('9','精磨外沟');");
$this->E_D("replace into `db_craft_template` values('10','合套');");
$this->E_D("replace into `db_craft_template` values('11','压盖');");
?>