diff --git a/Log.php b/Log.php index 3d109f8..3d61fad 100644 --- a/Log.php +++ b/Log.php @@ -1,6 +1,6 @@ 0) { +// 匹配关键字 + $keyword = array(); + $sql = ""; +// 去除匹配结果数组 + foreach ($image_res["result"] as $result) { +// 筛选置信值大于0.5的结果 + if ($result["score"] >= 0.5) { + array_push($keyword, '%' . $result["keyword"] . '%'); +// 拼接模糊查询语句 + $sql = $sql . " or name like ?"; + } + } +// 如果筛选结果大于0处理 + if (count($keyword) > 0) { + + $sql = "select * from garbage where" . substr($sql, 3); + info("查询sql" . $sql); + $garbage_result = getGarbageQuery($sql, $keyword); + json_res(json_encode(array("img_parse" => true, "query" => true, "img_res" => $image_res, "result" => $garbage_result->getGarbageObjArray()), JSON_UNESCAPED_UNICODE)); + + } else { + json_res(json_encode(array("img_parse" => true, "img_res" => $image_res))); + } + } else { + json_res(json_encode(array("img_parse" => false))); + } +} + + +// 查询token +$token_result = new class() extends AbstractTokenQuery +{ + public function bind_param(mysqli_stmt $stmt, array $param) + { - echo <<= strtotime($token_result->getToken()->getEndTime())) { + info("token失效了,更新token"); + $updateToken = new BaiduAiRequest("https://aip.baidubce.com/oauth/2.0/token"); + $updateToken->request_token(); + DbUtil::query("select * from api_token limit 0,1", $token_result); +} + + +//获取图片参数 +if (isset($_POST["image"])) { + // 请求通用物体和场景识别高级版接口 + $image_req = new BaiduAiRequest("https://aip.baidubce.com/rest/2.0/image-classify/v2/advanced_general"); + // 获取解析结果 + $image_res = $image_req->request_with_param(array("access_token" => $token_result->getToken()->getAccessToken(), "image" => $_POST["image"])); + query_waste_soring($image_res); +} else if ($_FILES["file"]["error"] > 0) { + json_res(<<request_with_param(array("access_token" => $token_result->getToken()->getAccessToken(), "image" => $image)); + query_waste_soring($image_res); } else { - echo << 1) { + $stmt->bind_param(str_repeat("s", count($param)), $param[0], ...array_slice($param, 1)); + } else { + $stmt->bind_param(str_repeat("s", count($param)), $param[0]); + } + + } + }; + + + DbUtil::query($sql, $garbage_result, $keyword); + + return $garbage_result; + } +} + +if (empty($_GET)) { + json_res(json_encode(array("status" => false, "error" => "非法请求"), JSON_UNESCAPED_UNICODE)); +} else if (isset($_GET["keyword"]) and !empty($_GET["keyword"])) { + $result = getGarbageQuery("select * from garbage where name like ?", array("%" . $_GET["keyword"] . "%")); + json_res(json_encode(array("status" => true, "result" => $result->getGarbageObjArray(), "keyword" => $_GET["keyword"]), JSON_UNESCAPED_UNICODE)); +} else if (isset($_GET["category"]) and is_numeric($_GET["category"])) { + $result = getGarbageQuery("select * from garbage where category = ?", array((int)$_GET["category"])); + json_res(json_encode(array("status" => true, "result" => $result->getGarbageObjArray(), "category" => $_GET["category"]), JSON_UNESCAPED_UNICODE)); +} else { + json_res(json_encode(array("status" => false, "error" => "非法查询参数"), JSON_UNESCAPED_UNICODE)); +} \ No newline at end of file diff --git a/baidu/BaiduAiRequest.php b/baidu/BaiduAiRequest.php index 2ea00b4..eac4b0a 100644 --- a/baidu/BaiduAiRequest.php +++ b/baidu/BaiduAiRequest.php @@ -1,7 +1,7 @@ url = $url; } - function request() + function request_token() { try { if (empty(self::$client_id) or empty(self::$client_secret)) { @@ -29,15 +29,18 @@ class BaiduAiRequest $post_data['grant_type'] = 'client_credentials'; $post_data['client_id'] = self::$client_id; $post_data['client_secret'] = self::$client_secret; - $o = ""; - foreach ($post_data as $k => $v) { - $o .= "$k=" . urlencode($v) . "&"; - } - $param = substr($o, 0, -1); - if (empty($this->url) || empty($param)) { - return false; + + $json_res = $this->request_with_param($post_data); + if (array_key_exists("error", $json_res)) { + throw new Exception("请求异常"); + } else { + DbUtil::delete("delete from api_token"); + $token = new ApiToken(null, $json_res["refresh_token"], $json_res["expires_in"], null, $json_res["scope"], $json_res["session_key"], $json_res["access_token"], $json_res["session_secret"]); + DbUtil::insert("insert into api_token (refresh_token, expires_in, end_time, scope, session_key, access_token, session_secret) values (?,?,?,?,?,?,?)", + "sisssss", $token->getRefreshToken(), $token->getExpiresIn(), date_format(date_create(date(default_format))->add(date_interval_create_from_date_string($token->getExpiresIn() . " seconds")), default_format), $token->getScope(), $token->getSessionKey(), $token->getAccessToken(), $token->getSessionSecret()); + info("token保存成功"); + return $token; } - return $this->request_with_param($param); } catch (Exception $e) { $GLOBALS["default_log"]->error($e); return << $v) { + $o .= "$k=" . urlencode($v) . "&"; + } + $param = substr($o, 0, -1); + if (empty($this->url) || empty($param)) { + return false; + } $curlPost = $param; $curl = curl_init($this->url);//初始化curl curl_setopt($curl, CURLOPT_HEADER, 0);//设置header @@ -61,17 +73,9 @@ class BaiduAiRequest curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false); $data = curl_exec($curl);//运行curl curl_close($curl); - $json_res = json_decode($data, true); + $json_res = json_decode($data, true, 512, JSON_UNESCAPED_UNICODE); info("接口响应结果:" . $data); - if (array_key_exists("error", $json_res)) { - throw new Exception("请求异常"); - } else { - $token = new ApiToken($json_res["refresh_token"], $json_res["expires_in"], $json_res["session_key"], $json_res["access_token"], $json_res["scope"], $json_res["session_secret"]); - DbUtil::insert("insert into api_token (refresh_token, expires_in, end_time, scope, session_key, access_token, session_secret) values (?,?,?,?,?,?,?)", - "sisssss", $token->getRefreshToken(), $token->getExpiresIn(), $token->getEndTime(), $token->getScope(), $token->getSessionKey(), $token->getAccessToken(), $token->getSessionSecret()); - info("token保存成功"); - return $token; - } + return $json_res; } catch (Exception $e) { error($e); return <<request(); - diff --git a/config.php b/config.php index a4cff85..fe94053 100644 --- a/config.php +++ b/config.php @@ -1,13 +1,14 @@ "mylinux", "username" => "sukura", "password" => "123456", "dbname" => "waste_sorting" )); - +//默认日期格式 define("default_format", "Y-m-d H:i:s"); +//根目录 +//define("__ROOT__", dirname(__FILE__)); -define("__ROOT__", dirname(__FILE__)); - +define("__ROOT__", "D:/JetBrains/PhpstormProjects/WasteSorting"); \ No newline at end of file diff --git a/database/DbUtil.php b/database/DbUtil.php index fee2661..19249c9 100644 --- a/database/DbUtil.php +++ b/database/DbUtil.php @@ -1,7 +1,16 @@ prepare("$sql");// 参数绑定 - $stmt->bind_param($types, ...$_);// 执行sql - $stmt->execute();// 关闭连接 + $stmt = $conn->prepare("$sql");//创建一个预定义的对象 ?占位 + if (!empty($types)) { + $stmt->bind_param($types, ...$_);// 参数绑定 + } + $stmt->execute();// 执行sql + info($action . $stmt->affected_rows . "条数据"); + $stmt->close(); + info("执行sql.$sql.成功"); + self::closeConn($conn);// 关闭连接 + } catch (Exception $e) { + error($action . "数据异常" . $e); + } + } + +// 插入数据 + public static function insert($sql, $types = "", ...$_) + { + self::modify("插入", $sql, $types, ...$_); + } + +// 更新数据 + public static function update($sql, $types = "", ...$_) + { + self::modify("更新", $sql, $types, ...$_); + } + +// 删除数据 + public static function delete($sql, $types = "", ...$_) + { + self::modify("删除", $sql, $types, ...$_); + } + + +//查询数据 + public static function query($sql, DoExcute $doExcute, array $param = array()) + { + try {// 创建连接 + $conn = self::getConn(); + $stmt = $conn->prepare($sql);//创建一个预定义的对象 ?占位 + $doExcute->bind_param($stmt, $param); + $stmt->execute();// 执行sql + $doExcute->doResult($stmt); info("执行sql.$sql.成功"); + $stmt->close(); + // 关闭连接 self::closeConn($conn); } catch (Exception $e) { - error("插入数据异常" . $e); + error("查询数据异常" . $e); } } } \ No newline at end of file diff --git a/database/Query.php b/database/Query.php new file mode 100644 index 0000000..c959cfc --- /dev/null +++ b/database/Query.php @@ -0,0 +1,103 @@ +bind_result($col1, $col2, $col3, $col4, $col5, $col6, $col7, $col8); + while ($stmt->fetch()) { + array_push($this->token_array, new ApiToken($col1, $col2, $col3, $col4, $col5, $col6, $col7, $col8)); + } + } + + /** + * @return array + */ + public function getTokenArray(): array + { + return $this->token_array; + } + + function getToken(): ApiToken + { + return $this->token_array[0]; + } + + +} + +//垃圾分类查询 +abstract class AbstractGarbageQuery implements DoExcute +{ +// 垃圾分类查询结果 + private $garbage_obj_array = array(); + + + public function doResult(mysqli_stmt $stmt) + { + + $stmt->bind_result($col1, $col2, $col3, $col4); + while ($stmt->fetch()) { + $g = new Garbage($col1, $col2, $col3, $col4); + array_push($this->garbage_obj_array, $g); + } + } + + + /** + * @return array + */ + public function getGarbageObjArray(): array + { + return $this->garbage_obj_array; + } + + +} + +function getGarbageQuery($sql, $keyword): AbstractGarbageQuery +{ + $garbage_result = new class() extends AbstractGarbageQuery + { + public function bind_param(mysqli_stmt $stmt, array $param) + { + if (count($param) > 1) { + $stmt->bind_param(str_repeat("s", count($param)), $param[0], ...array_slice($param, 1)); + } else { + $stmt->bind_param(str_repeat("s", count($param)), $param[0]); + } + + } + }; + + DbUtil::query($sql, $garbage_result, $keyword); + + return $garbage_result; +} \ No newline at end of file diff --git a/baidu/ApiToken.php b/entity/ApiToken.php similarity index 81% rename from baidu/ApiToken.php rename to entity/ApiToken.php index 6b2645f..f4c7fc7 100644 --- a/baidu/ApiToken.php +++ b/entity/ApiToken.php @@ -1,21 +1,13 @@ end_time; - } - private $scope; private $session_key; private $access_token; @@ -23,24 +15,38 @@ class ApiToken /** * ApiToken constructor. + * @param $id * @param $refresh_token * @param $expires_in + * @param $end_time * @param $scope * @param $session_key * @param $access_token * @param $session_secret */ - public function __construct($refresh_token, $expires_in, $scope, $session_key, $access_token, $session_secret) + public function __construct($id, $refresh_token, $expires_in, $end_time, $scope, $session_key, $access_token, $session_secret) { + $this->id = $id; $this->refresh_token = $refresh_token; $this->expires_in = $expires_in; - $this->end_time = date_format(date_create(date(default_format))->add(date_interval_create_from_date_string($expires_in . " seconds")), default_format); + $this->end_time = $end_time; $this->scope = $scope; $this->session_key = $session_key; $this->access_token = $access_token; $this->session_secret = $session_secret; } + + /** + * @return mixed + */ + public function getId() + { + return $this->id; + } + + + /** * @return mixed */ @@ -57,6 +63,14 @@ class ApiToken return $this->expires_in; } + /** + * @return false|string + */ + public function getEndTime() + { + return $this->end_time; + } + /** * @return mixed */ diff --git a/entity/Garbage.php b/entity/Garbage.php new file mode 100644 index 0000000..f4cfce8 --- /dev/null +++ b/entity/Garbage.php @@ -0,0 +1,68 @@ +name = $name; + $this->category = $category; + $this->create_at = $create_at; + $this->update_at = $update_at; + } + + /** + * @return mixed + */ + public function getName() + { + return $this->name; + } + + /** + * @return mixed + */ + public function getCategory() + { + return $this->category; + } + + /** + * @return mixed + */ + public function getCreateAt() + { + return $this->create_at; + } + + /** + * @return mixed + */ + public function getUpdateAt() + { + return $this->update_at; + } + + + public function jsonSerialize() + { + $data = []; + foreach ($this as $key => $val) { + if ($val !== null) $data[$key] = $val; + } + return $data; + } + +} \ No newline at end of file diff --git a/index.php b/index.php index 7325c2a..0f58ec8 100644 --- a/index.php +++ b/index.php @@ -1,6 +1,7 @@ "百度API配置", "WasteSorting" => "垃圾分类管理", "Question" => "题目管理"); -require "head.php"; +require_once "config.php"; +require_once __ROOT__ . "/head.php"; getMenu("后台管理"); diff --git a/script/db.sql b/script/db.sql index cd5dc95..5f35537 100644 --- a/script/db.sql +++ b/script/db.sql @@ -7,10 +7,10 @@ create table api_token expires_in int, # 有效时间 end_time datetime, - scope varchar(256), + scope varchar(1024), session_key varchar(256), # 要获取的Access Token; - access_token varchar(1024), + access_token varchar(256), session_secret varchar(32) ); diff --git a/script/main_Garbage.sql b/script/main_Garbage.sql index 131d071..960e3f5 100644 --- a/script/main_Garbage.sql +++ b/script/main_Garbage.sql @@ -997,4 +997,6976 @@ VALUES ('树根', 4, '2019-07-03 15:58:30.138 ', '2019-07-03 15:58:30.138 '); INSERT INTO garbage (name, category, create_at, update_at) VALUES ('菜梗', 4, '2019-07-03 15:58:31.102 ', '2019-07-03 15:58:31.102 '); INSERT INTO garbage (name, category, create_at, update_at) -VALUES ('桔梗', 4, '2019-07-03 15:58:31.246 ', '2019-07-05 01:37:16.559 '); \ No newline at end of file +VALUES ('桔梗', 4, '2019-07-03 15:58:31.246 ', '2019-07-05 01:37:16.559 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('菜梗菜叶', 4, '2019-07-03 15:58:31.388 ', '2019-07-03 15:58:31.388 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('工资卡', 1, '2019-07-03 15:58:31.546 ', '2019-07-03 15:58:31.546 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('美工刀', 1, '2019-07-03 15:58:31.669 ', '2019-07-05 01:37:19.509 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('公仔', 1, '2019-07-03 15:58:32.091 ', '2019-07-03 15:58:32.091 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('公交卡', 1, '2019-07-03 15:58:32.356 ', '2019-07-03 15:58:32.356 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('含汞体温计', 2, '2019-07-03 15:58:32.674 ', '2019-07-03 15:58:32.674 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('含汞温度计', 2, '2019-07-03 15:58:32.796 ', '2019-07-03 15:58:32.796 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('含汞血压计', 2, '2019-07-03 15:58:32.910 ', '2019-07-03 15:58:32.910 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铁钩', 1, '2019-07-03 15:58:33.214 ', '2019-07-05 01:37:19.738 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('勾线笔', 8, '2019-07-03 15:58:33.528 ', '2019-07-03 15:58:33.528 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水垢', 8, '2019-07-03 15:58:34.404 ', '2019-07-03 15:58:34.404 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('购物纸袋', 1, '2019-07-03 15:58:34.613 ', '2019-07-03 15:58:34.613 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料购物袋', 8, '2019-07-03 15:58:34.746 ', '2019-07-03 15:58:34.746 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纸质购物袋', 1, '2019-07-03 15:58:34.867 ', '2019-07-03 15:58:34.867 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('菌菇', 4, '2019-07-03 15:58:35.133 ', '2019-07-05 01:40:35.063 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蘑菇', 4, '2019-07-03 15:58:35.275 ', '2019-07-05 01:40:34.964 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('香菇', 4, '2019-07-03 15:58:35.406 ', '2019-07-05 01:40:34.978 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('晒鼓墨盒', 1, '2019-07-03 15:58:35.858 ', '2019-07-03 15:58:35.858 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('古筝', 16, '2019-07-03 15:58:36.061 ', '2019-08-02 00:08:41.337 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('大骨', 8, '2019-07-03 15:58:36.584 ', '2019-07-03 15:58:36.584 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('谷物', 4, '2019-07-03 15:58:36.747 ', '2019-07-03 15:58:36.747 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸡屁股', 4, '2019-07-03 15:58:36.918 ', '2019-07-05 01:37:17.055 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸭屁股', 4, '2019-07-03 15:58:37.031 ', '2019-07-03 15:58:37.031 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('烟屁股', 8, '2019-07-03 15:58:37.154 ', '2019-07-03 15:58:37.154 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('固体胶', 8, '2019-07-03 15:58:37.395 ', '2019-07-05 01:37:17.806 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('雨刮器', 8, '2019-07-03 15:58:37.629 ', '2019-07-03 15:58:37.629 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('刮胡子刀片', 1, '2019-07-03 15:58:37.771 ', '2019-07-03 15:58:37.771 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('汽车雨刮器', 8, '2019-07-03 15:58:37.904 ', '2019-07-03 15:58:37.904 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('瓜', 4, '2019-07-03 15:58:38.067 ', '2019-07-03 15:58:38.067 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('瓜果', 4, '2019-07-03 15:58:38.342 ', '2019-07-05 01:40:35.430 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('挂历', 1, '2019-07-03 15:58:38.600 ', '2019-07-03 15:58:38.600 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('挂钟', 1, '2019-07-03 15:58:38.737 ', '2019-07-03 15:58:38.737 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('挂号纸', 1, '2019-07-03 15:58:38.873 ', '2019-07-03 15:58:38.873 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铝管', 1, '2019-07-03 15:58:39.525 ', '2019-07-03 15:58:39.525 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('吸管', 8, '2019-07-03 15:58:39.640 ', '2019-07-05 01:37:17.342 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('罐头', 1, '2019-07-03 15:58:39.882 ', '2019-07-03 15:58:39.882 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铝罐', 1, '2019-07-03 15:58:40.040 ', '2019-07-03 15:58:40.040 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('陶罐', 8, '2019-07-03 15:58:40.170 ', '2019-07-03 15:58:40.170 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('光盘', 8, '2019-07-03 15:58:40.637 ', '2019-07-05 01:37:17.366 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('光驱', 1, '2019-07-03 15:58:40.784 ', '2019-07-05 01:37:20.055 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玫瑰', 4, '2019-07-03 15:58:41.413 ', '2019-07-03 15:58:41.413 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玫瑰花', 4, '2019-07-03 15:58:41.549 ', '2019-07-05 01:37:16.818 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('干枯玫瑰花', 4, '2019-07-03 15:58:41.684 ', '2019-07-03 15:58:41.684 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('硅胶', 8, '2019-07-03 15:58:41.972 ', '2019-07-03 15:58:41.972 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('乌龟壳', 8, '2019-07-03 15:58:42.294 ', '2019-07-05 01:37:17.765 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('桂圆', 4, '2019-07-03 15:58:42.835 ', '2019-07-03 15:58:42.835 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('桂圆核', 4, '2019-07-03 15:58:42.972 ', '2019-07-05 01:37:16.658 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('桂圆壳', 4, '2019-07-03 15:58:43.085 ', '2019-07-05 01:40:35.213 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铁棍', 1, '2019-07-03 15:58:44.075 ', '2019-07-03 15:58:44.075 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('冰棍棒', 8, '2019-07-03 15:58:44.182 ', '2019-07-03 15:58:44.182 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('糖葫芦棍', 8, '2019-07-03 15:58:44.357 ', '2019-07-03 15:58:44.357 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('锅', 1, '2019-07-03 15:58:44.542 ', '2019-07-05 01:37:19.327 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('过滤盒', 8, '2019-07-03 15:58:45.802 ', '2019-07-03 15:58:45.802 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('过滤器', 8, '2019-07-03 15:58:45.936 ', '2019-07-03 15:58:45.936 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('哈密瓜皮', 4, '2019-07-03 15:58:46.239 ', '2019-07-03 15:58:46.239 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('孩子尿片', 8, '2019-07-03 15:58:46.664 ', '2019-07-03 15:58:46.664 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('小孩尿布', 8, '2019-07-03 15:58:46.789 ', '2019-07-03 15:58:46.789 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('海带', 4, '2019-07-03 15:58:47.123 ', '2019-07-05 01:37:16.960 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('有害垃圾', 2, '2019-07-03 15:58:47.602 ', '2019-07-03 15:58:47.602 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('含油抹布', 8, '2019-07-03 15:58:48.005 ', '2019-07-03 15:58:48.005 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('焊丝', 1, '2019-07-03 15:58:48.673 ', '2019-07-03 15:58:48.673 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('汗衫', 1, '2019-07-03 15:58:49.101 ', '2019-07-03 15:58:49.101 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('记号笔', 8, '2019-07-03 15:58:50.304 ', '2019-07-05 01:37:17.696 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('取号纸', 8, '2019-07-03 15:58:50.443 ', '2019-07-03 15:58:50.443 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('喝过的茶叶', 4, '2019-07-03 15:58:50.682 ', '2019-07-03 15:58:50.682 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('喝完的药瓶', 2, '2019-07-03 15:58:50.823 ', '2019-07-03 15:58:50.823 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('喝过的茶叶渣', 4, '2019-07-03 15:58:50.962 ', '2019-07-03 15:58:50.962 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('荷包蛋', 4, '2019-07-03 15:58:51.136 ', '2019-07-03 15:58:51.136 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('果核', 4, '2019-07-03 15:58:51.382 ', '2019-07-03 15:58:51.382 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('梨核', 4, '2019-07-03 15:58:51.555 ', '2019-07-03 15:58:51.555 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('桃核', 4, '2019-07-03 15:58:51.702 ', '2019-07-05 01:40:35.146 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('糖和藕粉', 4, '2019-07-03 15:58:51.901 ', '2019-07-03 15:58:51.901 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铝合金', 1, '2019-07-03 15:58:52.125 ', '2019-07-03 15:58:52.125 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('复合包装', 8, '2019-07-03 15:58:52.271 ', '2019-07-03 15:58:52.271 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('合金玩具', 1, '2019-07-03 15:58:52.397 ', '2019-07-03 15:58:52.397 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('笔盒', 1, '2019-07-03 15:58:52.605 ', '2019-07-03 15:58:52.605 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('饭盒', 8, '2019-07-03 15:58:52.873 ', '2019-07-03 15:58:52.873 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('河豚', 4, '2019-07-03 15:58:53.131 ', '2019-07-03 15:58:53.131 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('贺卡', 1, '2019-07-03 15:58:53.493 ', '2019-07-03 15:58:53.493 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('黑豆', 4, '2019-07-03 15:58:53.851 ', '2019-07-03 15:58:53.851 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('黑猪', 4, '2019-07-03 15:58:53.996 ', '2019-07-03 15:58:53.996 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('烘干机', 1, '2019-07-03 15:58:54.651 ', '2019-07-03 15:58:54.651 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('烘手器', 1, '2019-07-03 15:58:54.795 ', '2019-07-03 15:58:54.795 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('红笔', 8, '2019-07-03 15:58:55.178 ', '2019-07-05 01:37:17.989 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('红薯', 4, '2019-07-03 15:58:55.447 ', '2019-07-05 01:37:16.687 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('猕猴桃', 4, '2019-07-03 15:58:55.687 ', '2019-07-05 01:37:16.579 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('厚纸板', 1, '2019-07-03 15:58:55.914 ', '2019-07-03 15:58:55.914 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('厚塑料袋', 8, '2019-07-03 15:58:56.059 ', '2019-07-03 15:58:56.059 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('厚型塑料袋', 8, '2019-07-03 15:58:56.223 ', '2019-07-03 15:58:56.223 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('粉碎后的打印纸', 8, '2019-07-03 15:58:56.441 ', '2019-07-03 15:58:56.441 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('洗净后的牛奶盒', 1, '2019-07-03 15:58:56.590 ', '2019-07-03 15:58:56.590 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('打印后的彩色照片', 2, '2019-07-03 15:58:56.717 ', '2019-07-03 15:58:56.717 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('呼叫器', 1, '2019-07-03 15:58:56.884 ', '2019-07-03 15:58:56.884 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('珊瑚', 8, '2019-07-03 15:58:57.153 ', '2019-07-03 15:58:57.153 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('茶壶', 8, '2019-07-03 15:58:57.353 ', '2019-07-05 01:37:17.730 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('油壶', 1, '2019-07-03 15:58:57.466 ', '2019-07-03 15:58:57.466 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玻璃壶', 1, '2019-07-03 15:58:57.592 ', '2019-07-05 01:37:18.954 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('胡子', 8, '2019-07-03 15:58:57.834 ', '2019-07-03 15:58:57.834 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('胡椒粉', 4, '2019-07-03 15:58:57.978 ', '2019-07-05 01:37:16.653 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('浆糊', 8, '2019-07-03 15:58:58.358 ', '2019-07-05 01:37:18.023 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('虎牙', 8, '2019-07-03 15:58:58.619 ', '2019-07-03 15:58:58.619 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('护目镜', 8, '2019-07-03 15:58:59.175 ', '2019-07-03 15:58:59.175 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('花', 4, '2019-07-03 15:58:59.608 ', '2019-07-03 15:58:59.608 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('菜花', 4, '2019-07-03 15:58:59.733 ', '2019-07-03 15:58:59.733 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('华为手机', 1, '2019-07-03 15:59:00.086 ', '2019-07-05 01:37:20.058 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('金华火腿', 4, '2019-07-03 15:59:00.199 ', '2019-07-03 15:59:00.199 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('精华液瓶', 1, '2019-07-03 15:59:00.341 ', '2019-07-03 15:59:00.341 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('防滑垫', 1, '2019-07-03 15:59:00.550 ', '2019-07-03 15:59:00.550 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('润滑剂', 8, '2019-07-03 15:59:00.672 ', '2019-07-03 15:59:00.672 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('润滑油', 8, '2019-07-03 15:59:00.804 ', '2019-07-03 15:59:00.804 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('画笔', 8, '2019-07-03 15:59:01.009 ', '2019-07-05 01:37:17.943 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('画纸', 1, '2019-07-03 15:59:01.136 ', '2019-07-03 15:59:01.136 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('胶画', 8, '2019-07-03 15:59:01.281 ', '2019-07-05 01:37:18.277 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('绿化', 4, '2019-07-03 15:59:01.612 ', '2019-07-03 15:59:01.612 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('钢化膜', 8, '2019-07-03 15:59:01.751 ', '2019-07-13 16:30:42.066 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电话', 1, '2019-07-03 15:59:01.942 ', '2019-07-03 15:59:01.942 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('话梅', 4, '2019-07-03 15:59:02.057 ', '2019-07-05 01:40:34.984 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('话筒', 1, '2019-07-03 15:59:02.188 ', '2019-07-05 01:37:19.959 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('坏发卡', 8, '2019-07-03 15:59:02.686 ', '2019-07-03 15:59:02.686 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('坏钢笔', 8, '2019-07-03 15:59:02.829 ', '2019-07-03 15:59:02.829 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('手环', 8, '2019-07-03 15:59:03.187 ', '2019-07-03 15:59:03.187 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('环保袋', 1, '2019-07-03 15:59:03.306 ', '2019-07-05 01:37:19.723 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('黄豆', 4, '2019-07-03 15:59:04.383 ', '2019-07-05 01:37:16.726 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('黄瓜', 4, '2019-07-03 15:59:04.526 ', '2019-07-05 01:40:35.298 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('灰', 8, '2019-07-03 15:59:05.325 ', '2019-07-03 15:59:05.325 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('徽章', 8, '2019-07-03 15:59:05.712 ', '2019-07-05 01:37:17.995 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('回收物', 1, '2019-07-03 15:59:05.983 ', '2019-07-03 15:59:05.983 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('回形针', 8, '2019-07-03 15:59:06.138 ', '2019-07-05 01:37:17.692 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('可回收', 1, '2019-07-03 15:59:06.257 ', '2019-07-03 15:59:06.257 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('花卉', 4, '2019-07-03 15:59:06.534 ', '2019-07-05 01:40:35.393 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('花卉绿植', 4, '2019-07-03 15:59:06.671 ', '2019-07-03 15:59:06.671 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('花卉植物', 4, '2019-07-03 15:59:06.824 ', '2019-07-03 15:59:06.824 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('会员卡', 1, '2019-07-03 15:59:07.183 ', '2019-07-05 01:37:19.544 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('婚戒', 1, '2019-07-03 15:59:07.948 ', '2019-07-03 15:59:07.948 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('结婚证书', 1, '2019-07-03 15:59:08.069 ', '2019-07-03 15:59:08.069 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('活性炭', 8, '2019-07-03 15:59:08.555 ', '2019-07-05 01:37:18.210 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('活性炭滤芯', 8, '2019-07-03 15:59:08.674 ', '2019-07-03 15:59:08.674 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('火锅', 4, '2019-07-03 15:59:09.156 ', '2019-07-03 15:59:09.156 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('干货', 4, '2019-07-03 15:59:09.522 ', '2019-07-03 15:59:09.522 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('干垃圾', 8, '2019-07-03 15:59:10.049 ', '2019-07-03 15:59:10.049 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('干拉圾', 8, '2019-07-03 15:59:10.203 ', '2019-07-03 15:59:10.203 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('垃圾袋', 8, '2019-07-03 15:59:10.323 ', '2019-07-05 01:37:17.530 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('火机', 8, '2019-07-03 15:59:10.837 ', '2019-07-03 15:59:10.837 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('积木', 1, '2019-07-03 15:59:11.102 ', '2019-07-03 15:59:11.102 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木积木', 1, '2019-07-03 15:59:11.215 ', '2019-07-05 01:37:19.335 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料积木', 1, '2019-07-03 15:59:11.351 ', '2019-07-03 15:59:11.351 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('冰激淋', 4, '2019-07-03 15:59:11.718 ', '2019-07-03 15:59:11.718 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('冰激凌', 4, '2019-07-03 15:59:11.863 ', '2019-07-03 15:59:11.863 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('冰激凌木棒', 8, '2019-07-03 15:59:12.011 ', '2019-07-03 15:59:12.011 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸡', 4, '2019-07-03 15:59:12.243 ', '2019-07-03 15:59:12.243 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸡蛋', 4, '2019-07-03 15:59:12.504 ', '2019-07-05 01:40:35.184 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('书籍', 1, '2019-07-03 15:59:13.084 ', '2019-07-03 15:59:13.084 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水产及其加工食品', 4, '2019-07-03 15:59:13.686 ', '2019-07-03 15:59:13.686 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('食物残渣及宠物饲料', 4, '2019-07-03 15:59:13.828 ', '2019-07-03 15:59:13.828 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('急支糖浆', 2, '2019-07-03 15:59:13.987 ', '2019-07-03 15:59:13.987 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('月季', 4, '2019-07-03 15:59:14.809 ', '2019-07-03 15:59:14.809 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('药剂', 2, '2019-07-03 15:59:15.070 ', '2019-07-05 01:37:20.207 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('除湿剂', 8, '2019-07-03 15:59:15.307 ', '2019-07-05 01:37:18.113 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('计算机', 1, '2019-07-03 15:59:15.683 ', '2019-07-03 15:59:15.683 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('计算器', 1, '2019-07-03 15:59:15.813 ', '2019-07-05 01:37:19.703 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('体温计', 2, '2019-07-03 15:59:15.927 ', '2019-07-03 15:59:15.927 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('笔记本', 1, '2019-07-03 15:59:16.116 ', '2019-07-03 15:59:16.116 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('笔记本纸', 1, '2019-07-03 15:59:16.245 ', '2019-07-03 15:59:16.245 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('夹克', 1, '2019-07-03 15:59:16.770 ', '2019-07-03 15:59:16.770 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('衣夹', 8, '2019-07-03 15:59:16.902 ', '2019-07-03 15:59:16.902 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('马夹袋', 8, '2019-07-03 15:59:17.021 ', '2019-07-05 01:37:17.340 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('家电', 1, '2019-07-03 15:59:17.230 ', '2019-07-03 15:59:17.230 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废家电', 1, '2019-07-03 15:59:17.491 ', '2019-07-03 15:59:17.491 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('加湿器', 1, '2019-07-03 15:59:17.670 ', '2019-07-05 01:37:19.805 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('加工类食品', 4, '2019-07-03 15:59:17.791 ', '2019-07-03 15:59:17.791 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('肉蛋加工食品', 4, '2019-07-03 15:59:17.934 ', '2019-07-03 15:59:17.934 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('花甲', 8, '2019-07-03 15:59:18.231 ', '2019-07-13 16:32:05.747 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('甲油', 2, '2019-07-03 15:59:18.349 ', '2019-07-03 15:59:18.349 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('甲鱼', 4, '2019-07-03 15:59:18.465 ', '2019-07-05 01:37:16.659 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('高铁酸钾', 2, '2019-07-03 15:59:18.640 ', '2019-07-03 15:59:18.640 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('假发', 8, '2019-07-03 15:59:18.805 ', '2019-07-05 01:37:17.544 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('假牙', 8, '2019-07-03 15:59:18.925 ', '2019-07-05 01:37:18.694 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('假发套', 8, '2019-07-03 15:59:19.047 ', '2019-07-03 15:59:19.047 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铁架', 1, '2019-07-03 15:59:19.575 ', '2019-07-03 15:59:19.575 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('坚果', 8, '2019-07-03 15:59:19.893 ', '2019-07-03 15:59:19.893 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('坚果壳', 8, '2019-07-03 15:59:20.032 ', '2019-07-05 01:37:17.277 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('坚果果壳', 8, '2019-07-03 15:59:20.170 ', '2019-07-03 15:59:20.170 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卫生间纸', 8, '2019-07-03 15:59:20.447 ', '2019-07-03 15:59:20.447 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('打印间碎纸', 1, '2019-07-03 15:59:20.590 ', '2019-07-03 15:59:20.590 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卫生间废纸', 8, '2019-07-03 15:59:20.714 ', '2019-07-03 15:59:20.714 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('煎鍋', 1, '2019-07-03 15:59:20.875 ', '2019-07-03 15:59:20.875 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('生煎', 4, '2019-07-03 15:59:21.038 ', '2019-07-03 15:59:21.038 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('生煎包', 4, '2019-07-03 15:59:21.172 ', '2019-07-03 15:59:21.172 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('碱性无汞电池', 8, '2019-07-03 15:59:21.700 ', '2019-07-03 15:59:21.700 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('剪纸', 8, '2019-07-03 15:59:22.160 ', '2019-07-03 15:59:22.160 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('剪子', 1, '2019-07-03 15:59:22.284 ', '2019-07-03 15:59:22.284 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('键盘', 1, '2019-07-03 15:59:22.774 ', '2019-07-05 01:37:19.375 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废键盘', 1, '2019-07-03 15:59:22.898 ', '2019-07-03 15:59:22.898 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('文件袋', 8, '2019-07-03 15:59:23.110 ', '2019-07-05 01:37:17.410 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('文件夹', 1, '2019-07-03 15:59:23.573 ', '2019-07-05 01:37:19.702 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('过期保健品', 2, '2019-07-03 15:59:23.996 ', '2019-07-03 15:59:23.996 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蜜饯', 4, '2019-07-03 15:59:24.263 ', '2019-07-05 01:37:17.090 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('姜', 4, '2019-07-03 15:59:25.034 ', '2019-07-05 01:40:35.236 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('生姜', 4, '2019-07-03 15:59:25.157 ', '2019-07-05 01:37:16.923 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('麻将牌', 8, '2019-07-03 15:59:25.348 ', '2019-07-03 15:59:25.348 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('麻将台', 1, '2019-07-03 15:59:25.473 ', '2019-07-03 15:59:25.473 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('豆浆袋', 8, '2019-07-03 15:59:25.656 ', '2019-07-05 01:37:17.742 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('豆浆袋子', 8, '2019-07-03 15:59:25.793 ', '2019-07-03 15:59:25.793 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('果酱', 4, '2019-07-03 15:59:26.278 ', '2019-07-05 01:37:16.775 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('酱料', 4, '2019-07-03 15:59:26.396 ', '2019-07-05 01:40:34.970 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('酱汁', 4, '2019-07-03 15:59:26.532 ', '2019-07-03 15:59:26.532 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('可降解塑料', 1, '2019-07-03 15:59:26.717 ', '2019-07-03 15:59:26.717 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('可降解垃圾袋', 8, '2019-07-03 15:59:26.843 ', '2019-07-13 16:32:12.320 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('可降解塑料袋', 8, '2019-07-03 15:59:26.991 ', '2019-07-03 15:59:26.991 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('香蕉', 4, '2019-07-03 15:59:27.170 ', '2019-07-05 01:40:35.143 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('烂香蕉', 4, '2019-07-03 15:59:27.424 ', '2019-07-03 15:59:27.424 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('菜椒', 4, '2019-07-03 15:59:27.616 ', '2019-07-03 15:59:27.616 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('花椒', 4, '2019-07-03 15:59:27.746 ', '2019-07-05 01:37:16.541 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('辣椒', 4, '2019-07-03 15:59:27.871 ', '2019-07-05 01:40:34.916 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('交通卡', 1, '2019-07-03 15:59:28.573 ', '2019-07-05 01:37:19.390 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木质搅拌棒', 8, '2019-07-03 15:59:29.229 ', '2019-07-03 15:59:29.229 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('泔脚', 4, '2019-07-03 15:59:29.540 ', '2019-07-03 15:59:29.540 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('脚皮', 8, '2019-07-03 15:59:29.682 ', '2019-07-05 01:37:17.996 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('猪脚', 4, '2019-07-03 15:59:29.813 ', '2019-07-03 15:59:29.813 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('菱角', 4, '2019-07-03 15:59:30.176 ', '2019-07-03 15:59:30.176 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牛角', 8, '2019-07-03 15:59:30.308 ', '2019-07-03 15:59:30.308 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('饺子', 4, '2019-07-03 15:59:30.493 ', '2019-07-03 15:59:30.493 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水饺', 4, '2019-07-03 15:59:30.623 ', '2019-07-03 15:59:30.623 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水饺袋', 8, '2019-07-03 15:59:30.805 ', '2019-07-03 15:59:30.805 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('污染较严重的纸张', 8, '2019-07-03 15:59:31.389 ', '2019-07-03 15:59:31.389 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('接线板', 1, '2019-07-03 15:59:31.705 ', '2019-07-05 01:37:19.632 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('节能灯', 2, '2019-07-03 15:59:32.292 ', '2019-07-03 15:59:32.292 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废节能灯', 2, '2019-07-03 15:59:32.432 ', '2019-07-05 01:37:20.070 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('节能灯管', 2, '2019-07-03 15:59:32.556 ', '2019-07-03 15:59:32.556 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('桔', 4, '2019-07-03 15:59:32.738 ', '2019-07-03 15:59:32.738 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('假睫毛', 8, '2019-07-03 15:59:33.121 ', '2019-07-05 01:37:18.839 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('睫毛膏', 8, '2019-07-03 15:59:33.279 ', '2019-07-05 01:37:18.344 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('睫毛刷', 8, '2019-07-03 15:59:33.430 ', '2019-07-03 15:59:33.430 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('清洁瓶', 1, '2019-07-03 15:59:33.798 ', '2019-07-03 15:59:33.798 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('毛豆结', 4, '2019-07-03 15:59:34.083 ', '2019-07-03 15:59:34.083 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('结成团的猫砂', 8, '2019-07-03 15:59:34.218 ', '2019-07-03 15:59:34.218 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('戒指', 1, '2019-07-03 15:59:34.483 ', '2019-07-03 15:59:34.483 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('金戒指', 1, '2019-07-03 15:59:34.601 ', '2019-07-05 01:37:19.453 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('毛巾', 8, '2019-07-03 15:59:35.243 ', '2019-07-03 15:59:35.243 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('湿巾', 8, '2019-07-03 15:59:35.384 ', '2019-07-03 15:59:35.384 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牛筋', 4, '2019-07-03 15:59:35.677 ', '2019-07-05 01:37:17.028 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('皮筋', 8, '2019-07-03 15:59:35.807 ', '2019-07-03 15:59:35.807 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('黄金', 1, '2019-07-03 15:59:36.048 ', '2019-07-05 01:37:19.450 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('金属', 1, '2019-07-03 15:59:36.183 ', '2019-07-13 16:32:21.616 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('金鱼', 4, '2019-07-03 15:59:36.319 ', '2019-07-03 15:59:36.319 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('香烟灰烬', 8, '2019-07-03 15:59:37.029 ', '2019-07-03 15:59:37.029 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('根茎蔬菜', 4, '2019-07-03 15:59:37.439 ', '2019-07-03 15:59:37.439 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蔬菜茎叶', 4, '2019-07-03 15:59:37.580 ', '2019-07-03 15:59:37.580 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水果茎枝', 4, '2019-07-03 15:59:37.704 ', '2019-07-03 15:59:37.704 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('液晶屏', 1, '2019-07-03 15:59:37.916 ', '2019-07-03 15:59:37.916 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('液晶电视', 1, '2019-07-03 15:59:38.033 ', '2019-07-03 15:59:38.033 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸡精', 4, '2019-07-03 15:59:38.359 ', '2019-07-05 01:40:34.968 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('味精', 4, '2019-07-03 15:59:38.651 ', '2019-07-05 01:40:34.967 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('镜子', 8, '2019-07-03 15:59:39.199 ', '2019-07-05 01:37:17.279 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('墨镜', 8, '2019-07-03 15:59:39.313 ', '2019-07-05 01:37:18.043 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('眼镜', 8, '2019-07-03 15:59:39.450 ', '2019-07-05 01:37:17.329 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('净水器', 1, '2019-07-03 15:59:39.959 ', '2019-07-05 01:37:19.077 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('干净塑料', 1, '2019-07-03 15:59:40.090 ', '2019-07-03 15:59:40.090 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('净水滤芯', 8, '2019-07-03 15:59:40.230 ', '2019-07-03 15:59:40.230 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('韭菜', 4, '2019-07-03 15:59:40.643 ', '2019-07-05 01:40:35.362 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('针灸针', 8, '2019-07-03 15:59:40.839 ', '2019-07-03 15:59:40.839 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('酒酿', 4, '2019-07-03 15:59:41.222 ', '2019-07-05 01:37:16.677 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('酒瓶', 1, '2019-07-03 15:59:41.351 ', '2019-07-05 01:37:18.992 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧报', 1, '2019-07-03 15:59:41.617 ', '2019-07-03 15:59:41.617 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧书', 1, '2019-07-03 15:59:41.737 ', '2019-07-03 15:59:41.737 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧鞋', 1, '2019-07-03 15:59:41.871 ', '2019-07-03 15:59:41.871 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('聚乙烯饭盒', 8, '2019-07-03 15:59:43.331 ', '2019-07-03 15:59:43.331 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('收据', 8, '2019-07-03 15:59:43.575 ', '2019-07-05 01:37:17.565 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('数据线', 1, '2019-07-03 15:59:43.705 ', '2019-07-05 01:37:19.055 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('皮具', 1, '2019-07-03 15:59:44.185 ', '2019-07-05 01:37:19.154 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蛋卷', 4, '2019-07-03 15:59:44.923 ', '2019-07-05 01:37:16.819 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('胶卷', 2, '2019-07-03 15:59:45.038 ', '2019-07-03 15:59:45.038 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卷烟', 8, '2019-07-03 15:59:45.179 ', '2019-07-03 15:59:45.179 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('杀菌剂', 2, '2019-07-03 15:59:45.892 ', '2019-07-03 15:59:45.892 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('无菌包装塑料', 8, '2019-07-03 15:59:46.038 ', '2019-07-03 15:59:46.038 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卡', 8, '2019-07-03 15:59:47.157 ', '2019-07-03 15:59:47.157 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('开心果', 4, '2019-07-03 15:59:47.498 ', '2019-07-05 01:40:35.085 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('开心果壳', 4, '2019-07-03 15:59:47.690 ', '2019-07-13 16:32:32.076 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧报刊', 1, '2019-07-03 15:59:48.194 ', '2019-07-03 15:59:48.194 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('糠', 4, '2019-07-03 15:59:48.671 ', '2019-07-03 15:59:48.671 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('糠饼', 4, '2019-07-03 15:59:48.806 ', '2019-07-03 15:59:48.806 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('考卷', 1, '2019-07-03 16:00:27.699 ', '2019-07-03 16:00:27.699 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('考试卷', 1, '2019-07-03 16:00:27.841 ', '2019-07-03 16:00:27.841 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('烤箱', 1, '2019-07-03 16:00:32.078 ', '2019-07-03 16:00:32.078 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('烧烤棒', 8, '2019-07-03 16:00:33.277 ', '2019-07-03 16:00:33.277 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('靠垫', 1, '2019-07-03 16:00:33.453 ', '2019-07-05 01:37:19.342 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('靠枕', 1, '2019-07-03 16:00:33.575 ', '2019-07-05 01:37:19.343 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('笔壳', 8, '2019-07-03 16:00:34.303 ', '2019-07-05 01:37:18.770 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('咳嗽糖浆', 2, '2019-07-03 16:00:34.495 ', '2019-07-03 16:00:34.495 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('可擦笔', 8, '2019-07-03 16:00:34.828 ', '2019-07-03 16:00:34.828 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('扑克', 1, '2019-07-03 16:00:35.029 ', '2019-07-03 16:00:35.029 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('马克笔', 8, '2019-07-03 16:00:35.151 ', '2019-07-05 01:37:18.192 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('空罐头', 1, '2019-07-03 16:00:37.287 ', '2019-07-03 16:00:37.287 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('空酒瓶', 1, '2019-07-03 16:00:37.405 ', '2019-07-03 16:00:37.405 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('遥控车', 1, '2019-07-03 16:00:37.657 ', '2019-07-03 16:00:37.657 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('遥控器', 1, '2019-07-03 16:00:37.793 ', '2019-07-05 01:37:19.344 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('空调遥控器', 1, '2019-07-03 16:00:37.922 ', '2019-07-03 16:00:37.922 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('口红', 8, '2019-07-03 16:00:38.157 ', '2019-07-05 01:37:17.699 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('口罩', 8, '2019-07-03 16:00:38.307 ', '2019-07-05 01:37:18.445 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纽扣', 8, '2019-07-03 16:00:38.643 ', '2019-07-03 16:00:38.643 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('钮扣', 8, '2019-07-03 16:00:38.767 ', '2019-07-05 01:37:17.197 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纽扣电池', 2, '2019-07-03 16:00:38.899 ', '2019-07-03 16:00:38.899 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('枯叶', 4, '2019-07-03 16:00:39.141 ', '2019-07-03 16:00:39.141 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('枯枝', 4, '2019-07-03 16:00:39.273 ', '2019-07-05 01:37:16.822 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('干枯花', 4, '2019-07-03 16:00:39.394 ', '2019-07-03 16:00:39.394 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('裤袜', 1, '2019-07-03 16:00:39.955 ', '2019-07-03 16:00:39.955 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('裤子', 1, '2019-07-03 16:00:40.085 ', '2019-07-05 01:37:19.301 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铁块', 1, '2019-07-03 16:00:40.689 ', '2019-07-03 16:00:40.689 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('筷子', 8, '2019-07-03 16:00:41.147 ', '2019-07-05 01:37:17.673 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木筷', 1, '2019-07-03 16:00:41.282 ', '2019-07-05 01:37:19.536 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('竹筷', 8, '2019-07-03 16:00:41.410 ', '2019-07-03 16:00:41.410 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('快餐盒', 8, '2019-07-03 16:00:41.611 ', '2019-07-05 01:37:18.223 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料筐', 1, '2019-07-03 16:00:42.188 ', '2019-07-03 16:00:42.188 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料篮筐', 1, '2019-07-03 16:00:42.318 ', '2019-07-03 16:00:42.318 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料水果筐', 1, '2019-07-03 16:00:42.613 ', '2019-07-03 16:00:42.613 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('相框', 1, '2019-07-03 16:00:42.844 ', '2019-07-05 01:37:19.960 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('黑框眼镜', 8, '2019-07-03 16:00:42.976 ', '2019-07-03 16:00:42.976 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('矿水瓶', 1, '2019-07-03 16:00:43.292 ', '2019-07-03 16:00:43.292 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('矿泉水瓶', 1, '2019-07-03 16:00:43.409 ', '2019-07-05 01:37:18.901 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('矿泉水瓶子', 1, '2019-07-03 16:00:43.523 ', '2019-07-03 16:00:43.523 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('头盔', 8, '2019-07-03 16:00:43.877 ', '2019-07-03 16:00:43.877 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('葵花籽', 4, '2019-07-03 16:00:44.153 ', '2019-07-05 01:37:16.745 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('葵花子壳', 4, '2019-07-03 16:00:44.285 ', '2019-07-03 16:00:44.285 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('葵花籽壳', 4, '2019-07-03 16:00:44.451 ', '2019-07-05 01:37:16.992 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('死昆虫', 4, '2019-07-03 16:00:44.934 ', '2019-07-03 16:00:44.934 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('垃圾桶', 1, '2019-07-03 16:00:45.380 ', '2019-07-05 01:37:19.240 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('拉链', 8, '2019-07-03 16:00:45.702 ', '2019-07-05 01:37:18.171 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('拉拉裤', 8, '2019-07-03 16:00:45.843 ', '2019-07-03 16:00:45.843 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蜡笔', 8, '2019-07-03 16:00:46.204 ', '2019-07-05 01:37:18.356 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蜡纸', 8, '2019-07-03 16:00:46.332 ', '2019-07-03 16:00:46.332 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('腊肉', 4, '2019-07-03 16:00:46.527 ', '2019-07-03 16:00:46.527 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('辣酱', 4, '2019-07-03 16:00:46.776 ', '2019-07-03 16:00:46.776 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('辣条', 4, '2019-07-03 16:00:46.904 ', '2019-07-05 01:40:35.376 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('剩莱', 4, '2019-07-03 16:00:47.153 ', '2019-07-03 16:00:47.153 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('一次性莱盒', 8, '2019-07-03 16:00:47.288 ', '2019-07-03 16:00:47.288 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('自来水滤芯', 8, '2019-07-03 16:00:47.462 ', '2019-07-03 16:00:47.462 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蓝莓干', 4, '2019-07-03 16:00:47.919 ', '2019-07-03 16:00:47.919 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑胶菜蓝子', 1, '2019-07-03 16:00:48.048 ', '2019-07-03 16:00:48.048 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('花篮', 8, '2019-07-03 16:00:49.577 ', '2019-07-05 01:37:18.760 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('篮球', 1, '2019-07-03 16:00:49.707 ', '2019-07-05 01:37:18.940 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('竹篮', 8, '2019-07-03 16:00:49.829 ', '2019-07-03 16:00:49.829 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('西兰花', 4, '2019-07-03 16:00:50.043 ', '2019-07-05 01:40:35.129 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电缆', 1, '2019-07-03 16:00:50.414 ', '2019-07-03 16:00:50.414 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('烂桔', 4, '2019-07-03 16:00:50.615 ', '2019-07-03 16:00:50.615 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('烂桃', 4, '2019-07-03 16:00:50.747 ', '2019-07-03 16:00:50.747 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('烂菜叶', 4, '2019-07-03 16:00:50.885 ', '2019-07-03 16:00:50.885 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('槟榔', 4, '2019-07-03 16:00:51.138 ', '2019-07-05 01:37:16.845 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('榔头', 1, '2019-07-03 16:00:51.295 ', '2019-07-05 01:37:19.875 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('槟榔壳', 4, '2019-07-03 16:00:51.431 ', '2019-07-03 16:00:51.431 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('老鼠药', 2, '2019-07-03 16:00:52.280 ', '2019-07-05 01:37:20.168 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('死老鼠', 4, '2019-07-03 16:00:52.410 ', '2019-07-03 16:00:52.410 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('奶酪', 4, '2019-07-03 16:00:52.646 ', '2019-07-05 01:37:16.675 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('可乐杯', 8, '2019-07-03 16:00:53.066 ', '2019-07-03 16:00:53.066 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('可乐罐', 1, '2019-07-03 16:00:53.191 ', '2019-07-05 01:37:19.133 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('肋骨', 8, '2019-07-03 16:00:53.832 ', '2019-07-03 16:00:53.832 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('肋排', 4, '2019-07-03 16:00:53.972 ', '2019-07-03 16:00:53.972 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('布类', 1, '2019-07-03 16:00:54.155 ', '2019-07-03 16:00:54.155 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蛋类', 4, '2019-07-03 16:00:54.289 ', '2019-07-03 16:00:54.289 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('擦眼泪的纸', 8, '2019-07-03 16:00:54.604 ', '2019-07-03 16:00:54.604 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('瓦楞纸', 1, '2019-07-03 16:00:54.806 ', '2019-07-03 16:00:54.806 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('冷饮', 8, '2019-07-03 16:00:55.000 ', '2019-07-05 01:37:18.607 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('冷饮棒', 8, '2019-07-03 16:00:55.137 ', '2019-07-05 01:37:17.488 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('冷饮袋', 8, '2019-07-03 16:00:55.265 ', '2019-07-03 16:00:55.265 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('车厘子', 4, '2019-07-03 16:00:55.618 ', '2019-07-03 16:00:55.618 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('梨', 4, '2019-07-03 16:00:55.780 ', '2019-07-05 01:40:34.914 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('离心纸', 8, '2019-07-03 16:00:56.249 ', '2019-07-03 16:00:56.249 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('钢笔里的墨囊', 8, '2019-07-03 16:00:56.763 ', '2019-07-03 16:00:56.763 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纸制糖果礼盒', 1, '2019-07-03 16:00:56.989 ', '2019-07-03 16:00:56.989 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('荔枝核', 4, '2019-07-03 16:00:57.222 ', '2019-07-05 01:40:35.112 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('荔枝壳', 4, '2019-07-03 16:00:57.340 ', '2019-07-05 01:40:35.197 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('荔枝干壳', 4, '2019-07-03 16:00:57.472 ', '2019-07-03 16:00:57.472 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('栗子', 4, '2019-07-03 16:00:58.021 ', '2019-07-05 01:40:35.334 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('板栗壳', 4, '2019-07-03 16:00:58.148 ', '2019-07-05 01:40:35.028 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('可丽饼', 4, '2019-07-03 16:00:58.349 ', '2019-07-03 16:00:58.349 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('麦丽素', 4, '2019-07-03 16:00:58.499 ', '2019-07-03 16:00:58.499 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('日历', 1, '2019-07-03 16:00:59.013 ', '2019-07-05 01:37:19.918 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('台历', 1, '2019-07-03 16:00:59.149 ', '2019-07-05 01:37:19.158 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('便利贴', 8, '2019-07-03 16:00:59.297 ', '2019-07-05 01:37:18.407 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('乐利包', 1, '2019-07-03 16:00:59.423 ', '2019-07-03 16:00:59.423 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('利乐包', 1, '2019-07-03 16:00:59.565 ', '2019-07-03 16:00:59.565 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('果粒', 4, '2019-07-03 16:01:00.111 ', '2019-07-03 16:01:00.111 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牛肉粒包装袋', 8, '2019-07-03 16:01:00.239 ', '2019-07-03 16:01:00.239 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('沥水架', 1, '2019-07-03 16:01:00.783 ', '2019-07-03 16:01:00.783 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('磁力片', 8, '2019-07-03 16:01:01.014 ', '2019-07-03 16:01:01.014 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('魔力擦', 8, '2019-07-03 16:01:01.170 ', '2019-07-03 16:01:01.170 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('巧克力', 4, '2019-07-03 16:01:01.304 ', '2019-07-05 01:40:35.065 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('琉璃', 1, '2019-07-03 16:01:01.612 ', '2019-07-03 16:01:01.612 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('联通卡', 8, '2019-07-03 16:01:02.000 ', '2019-07-03 16:01:02.000 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('莲藕', 4, '2019-07-03 16:01:02.172 ', '2019-07-03 16:01:02.172 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('莲蓬', 4, '2019-07-03 16:01:02.318 ', '2019-07-03 16:01:02.318 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('莲雾', 4, '2019-07-03 16:01:02.472 ', '2019-07-03 16:01:02.472 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('连裤袜', 1, '2019-07-03 16:01:02.656 ', '2019-07-03 16:01:02.656 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('连衣裙', 1, '2019-07-03 16:01:02.808 ', '2019-07-05 01:37:19.937 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('骨肉相连', 4, '2019-07-03 16:01:02.946 ', '2019-07-03 16:01:02.946 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('洗脸巾', 8, '2019-07-03 16:01:03.490 ', '2019-07-05 01:37:17.543 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('护脸霜瓶', 1, '2019-07-03 16:01:03.626 ', '2019-07-03 16:01:03.626 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料脸盆', 1, '2019-07-03 16:01:03.760 ', '2019-07-03 16:01:03.760 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('项链', 1, '2019-07-03 16:01:03.925 ', '2019-07-05 01:37:19.202 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('金属拉链', 1, '2019-07-03 16:01:04.033 ', '2019-07-03 16:01:04.033 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('练习本', 1, '2019-07-03 16:01:04.304 ', '2019-07-03 16:01:04.304 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('狗粮', 4, '2019-07-03 16:01:04.488 ', '2019-07-05 01:40:35.015 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('粮食', 4, '2019-07-03 16:01:04.616 ', '2019-07-03 16:01:04.616 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('猫粮', 4, '2019-07-03 16:01:04.735 ', '2019-07-05 01:40:35.081 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('凉皮', 4, '2019-07-03 16:01:04.899 ', '2019-07-03 16:01:04.899 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('凉席', 8, '2019-07-03 16:01:05.034 ', '2019-07-05 01:37:17.741 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('空调两用风扇', 1, '2019-07-03 16:01:05.613 ', '2019-07-03 16:01:05.613 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('少量泥土', 8, '2019-07-03 16:01:05.954 ', '2019-07-03 16:01:05.954 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('晾衣架', 1, '2019-07-03 16:01:06.254 ', '2019-07-05 01:37:19.258 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料晾衣架', 1, '2019-07-03 16:01:06.364 ', '2019-07-05 01:37:19.773 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('坏了的碗', 1, '2019-07-03 16:01:07.228 ', '2019-07-03 16:01:07.228 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('破了的碗', 1, '2019-07-03 16:01:07.340 ', '2019-07-03 16:01:07.340 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('坏了的玩具', 1, '2019-07-03 16:01:07.477 ', '2019-07-03 16:01:07.477 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('布料', 1, '2019-07-03 16:01:07.813 ', '2019-07-05 01:37:19.789 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('盘尼西林', 2, '2019-07-03 16:01:08.704 ', '2019-07-03 16:01:08.704 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鱼鳞', 4, '2019-07-03 16:01:09.058 ', '2019-07-05 01:40:34.890 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鱼鳞鱼肠', 4, '2019-07-03 16:01:09.211 ', '2019-07-03 16:01:09.211 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('冰淇淋', 4, '2019-07-03 16:01:09.391 ', '2019-07-05 01:37:16.922 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('零食', 4, '2019-07-03 16:01:09.840 ', '2019-07-03 16:01:09.840 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('零食袋', 8, '2019-07-03 16:01:09.984 ', '2019-07-03 16:01:09.984 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('零食罐', 8, '2019-07-03 16:01:10.104 ', '2019-07-03 16:01:10.104 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('哑铃', 1, '2019-07-03 16:01:10.476 ', '2019-07-05 01:37:19.923 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('马铃薯', 4, '2019-07-03 16:01:10.601 ', '2019-07-03 16:01:10.601 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('马铃薯片', 4, '2019-07-03 16:01:10.744 ', '2019-07-03 16:01:10.744 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('领带', 1, '2019-07-03 16:01:11.317 ', '2019-07-03 16:01:11.317 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('红领巾', 1, '2019-07-03 16:01:11.444 ', '2019-07-03 16:01:11.444 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('毛领子', 1, '2019-07-03 16:01:11.567 ', '2019-07-03 16:01:11.567 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('溜溜球', 8, '2019-07-03 16:01:12.012 ', '2019-07-03 16:01:12.012 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('榴莲干', 4, '2019-07-03 16:01:12.276 ', '2019-07-03 16:01:12.276 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('榴莲核', 8, '2019-07-03 16:01:12.448 ', '2019-07-05 01:37:17.598 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('榴莲壳', 8, '2019-07-03 16:01:12.586 ', '2019-07-05 01:37:17.269 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('镇流器', 1, '2019-07-03 16:01:13.304 ', '2019-07-03 16:01:13.304 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电子镇流器', 1, '2019-07-03 16:01:13.444 ', '2019-07-03 16:01:13.444 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('龙虾', 4, '2019-07-03 16:01:13.713 ', '2019-07-03 16:01:13.713 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('大龙虾', 4, '2019-07-03 16:01:13.938 ', '2019-07-03 16:01:13.938 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('龙虾壳', 4, '2019-07-03 16:01:14.071 ', '2019-07-03 16:01:14.071 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸟笼', 8, '2019-07-03 16:01:14.326 ', '2019-07-03 16:01:14.326 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('芦荟', 4, '2019-07-03 16:01:15.089 ', '2019-07-03 16:01:15.089 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('芦稷', 4, '2019-07-03 16:01:15.231 ', '2019-07-03 16:01:15.231 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('芦稷皮', 8, '2019-07-03 16:01:15.377 ', '2019-07-03 16:01:15.377 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('甜卢蜀', 4, '2019-07-03 16:01:15.553 ', '2019-07-03 16:01:15.553 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('炉渣', 8, '2019-07-03 16:01:15.824 ', '2019-07-05 01:37:17.958 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电磁炉', 1, '2019-07-03 16:01:15.940 ', '2019-07-05 01:37:19.842 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电暖炉', 1, '2019-07-03 16:01:16.055 ', '2019-07-03 16:01:16.055 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卤素灯', 2, '2019-07-03 16:01:16.281 ', '2019-07-05 01:37:20.159 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卤素灯泡', 2, '2019-07-03 16:01:16.426 ', '2019-07-03 16:01:16.426 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('花露水瓶', 1, '2019-07-03 16:01:16.773 ', '2019-07-05 01:37:19.951 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('沐浴露瓶', 1, '2019-07-03 16:01:16.910 ', '2019-07-05 01:37:19.926 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('洗发露瓶', 1, '2019-07-03 16:01:17.022 ', '2019-07-05 01:37:19.691 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电路板', 1, '2019-07-03 16:01:17.182 ', '2019-07-03 16:01:17.182 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('路由器', 1, '2019-07-03 16:01:17.298 ', '2019-07-05 01:37:19.255 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('线路板', 1, '2019-07-03 16:01:17.440 ', '2019-07-05 01:37:19.996 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('录像带', 2, '2019-07-03 16:01:17.938 ', '2019-07-05 01:37:20.186 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('录音机', 1, '2019-07-03 16:01:18.066 ', '2019-07-03 16:01:18.066 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铝', 1, '2019-07-03 16:01:18.567 ', '2019-07-03 16:01:18.567 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旅行袋', 1, '2019-07-03 16:01:19.037 ', '2019-07-03 16:01:19.037 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旅游时报', 1, '2019-07-03 16:01:19.171 ', '2019-07-03 16:01:19.171 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('滤网', 8, '2019-07-03 16:01:19.785 ', '2019-07-05 01:37:18.611 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('滤芯', 8, '2019-07-03 16:01:19.914 ', '2019-07-05 01:37:17.637 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('绿豆', 4, '2019-07-03 16:01:20.099 ', '2019-07-05 01:40:35.237 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('绿萝', 4, '2019-07-03 16:01:21.234 ', '2019-07-03 16:01:21.234 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('海螺', 8, '2019-07-03 16:01:22.841 ', '2019-07-13 16:30:31.032 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('花螺', 8, '2019-07-03 16:01:22.977 ', '2019-07-13 16:34:54.284 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('螺帽', 1, '2019-07-03 16:01:23.110 ', '2019-07-03 16:01:23.110 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('绿箩', 4, '2019-07-03 16:01:23.415 ', '2019-07-05 01:37:16.613 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('落发', 8, '2019-07-03 16:01:23.676 ', '2019-07-03 16:01:23.676 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('落叶', 4, '2019-07-03 16:01:23.807 ', '2019-07-03 16:01:23.807 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('落花生', 4, '2019-07-03 16:01:24.089 ', '2019-07-03 16:01:24.089 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('姨妈巾', 8, '2019-07-03 16:01:24.583 ', '2019-07-05 01:37:18.001 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('老干妈辣酱', 4, '2019-07-03 16:01:24.711 ', '2019-07-03 16:01:24.711 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('麻布', 1, '2019-07-03 16:01:25.080 ', '2019-07-03 16:01:25.080 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('麻袋', 8, '2019-07-03 16:01:25.211 ', '2019-07-05 01:37:18.636 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('麻绳', 8, '2019-07-03 16:01:25.320 ', '2019-07-05 01:37:18.306 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('密码锁', 1, '2019-07-03 16:01:25.535 ', '2019-07-03 16:01:25.535 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('马肉', 4, '2019-07-03 16:01:25.886 ', '2019-07-03 16:01:25.886 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('买菜的包装袋', 8, '2019-07-03 16:01:27.230 ', '2019-07-03 16:01:27.230 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('麦子', 4, '2019-07-03 16:01:27.644 ', '2019-07-03 16:01:27.644 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('烧卖', 4, '2019-07-03 16:01:27.824 ', '2019-07-03 16:01:27.824 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('外卖盒', 8, '2019-07-03 16:01:27.960 ', '2019-07-03 16:01:27.960 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('外卖餐盒', 8, '2019-07-03 16:01:28.261 ', '2019-07-05 01:37:17.421 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('馒头', 4, '2019-07-03 16:01:28.563 ', '2019-07-05 01:40:35.180 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蔓藤', 4, '2019-07-03 16:01:28.819 ', '2019-07-03 16:01:28.819 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('藤蔓', 4, '2019-07-03 16:01:28.982 ', '2019-07-03 16:01:28.982 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('漫画', 1, '2019-07-03 16:01:29.254 ', '2019-07-03 16:01:29.254 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('漫画书', 1, '2019-07-03 16:01:29.386 ', '2019-07-03 16:01:29.386 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('芒果', 4, '2019-07-03 16:01:29.597 ', '2019-07-03 16:01:29.597 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('芒果干', 4, '2019-07-03 16:01:29.725 ', '2019-07-05 01:37:17.119 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('芒果核', 4, '2019-07-03 16:01:29.865 ', '2019-07-05 01:40:35.133 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('貂毛', 8, '2019-07-03 16:01:30.940 ', '2019-07-03 16:01:30.940 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('狗毛', 8, '2019-07-03 16:01:31.219 ', '2019-07-05 01:37:17.337 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('帽子', 1, '2019-07-03 16:01:31.743 ', '2019-07-03 16:01:31.743 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('浴帽', 8, '2019-07-03 16:01:31.867 ', '2019-07-03 16:01:31.867 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('泡沫箱属于什么垃圾', 1, '2019-07-03 16:01:32.138 ', '2019-07-03 16:01:32.138 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('杨梅', 4, '2019-07-03 16:01:32.593 ', '2019-07-05 01:37:16.793 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('发霉食物', 4, '2019-07-03 16:01:32.833 ', '2019-07-03 16:01:32.833 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('煤饼', 8, '2019-07-03 16:01:33.005 ', '2019-07-03 16:01:33.005 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('煤灰', 8, '2019-07-03 16:01:33.132 ', '2019-07-03 16:01:33.132 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('煤渣', 8, '2019-07-03 16:01:33.401 ', '2019-07-03 16:01:33.401 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('没用过尿片', 8, '2019-07-03 16:01:33.594 ', '2019-07-03 16:01:33.594 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('没用过的纸杯', 8, '2019-07-03 16:01:33.741 ', '2019-07-03 16:01:33.741 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('没用过的尿不湿', 8, '2019-07-03 16:01:33.882 ', '2019-07-03 16:01:33.882 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('眉笔', 8, '2019-07-03 16:01:34.051 ', '2019-07-05 01:37:17.978 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('美瞳', 8, '2019-07-03 16:01:34.530 ', '2019-07-05 01:37:17.821 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('门锁', 1, '2019-07-03 16:01:35.260 ', '2019-07-03 16:01:35.260 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('柠檬', 4, '2019-07-03 16:01:35.628 ', '2019-07-05 01:40:34.927 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('米', 4, '2019-07-03 16:01:36.713 ', '2019-07-03 16:01:36.713 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('大米', 4, '2019-07-03 16:01:36.845 ', '2019-07-05 01:40:35.266 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('菠萝蜜', 4, '2019-07-03 16:01:38.303 ', '2019-07-03 16:01:38.303 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('棉', 1, '2019-07-03 16:01:39.012 ', '2019-07-03 16:01:39.012 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('海绵', 8, '2019-07-03 16:01:39.675 ', '2019-07-05 01:37:17.232 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('海绵垫', 8, '2019-07-03 16:01:39.797 ', '2019-07-03 16:01:39.797 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('海绵纸', 8, '2019-07-03 16:01:39.923 ', '2019-07-03 16:01:39.923 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('面', 4, '2019-07-03 16:01:40.339 ', '2019-07-03 16:01:40.339 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('面包', 4, '2019-07-03 16:01:40.596 ', '2019-07-05 01:40:34.911 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('灭火器', 1, '2019-07-03 16:01:41.215 ', '2019-07-05 01:37:19.392 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('灭蚊剂', 2, '2019-07-03 16:01:41.334 ', '2019-07-03 16:01:41.334 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废灭火器', 1, '2019-07-03 16:01:41.481 ', '2019-07-03 16:01:41.481 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玻璃器皿', 1, '2019-07-03 16:01:42.034 ', '2019-07-03 16:01:42.034 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('明信片', 8, '2019-07-03 16:01:42.407 ', '2019-07-05 01:37:17.567 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('三明治', 4, '2019-07-03 16:01:42.579 ', '2019-07-03 16:01:42.579 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('说明书', 1, '2019-07-03 16:01:42.696 ', '2019-07-05 01:37:19.630 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('名画', 8, '2019-07-03 16:01:43.015 ', '2019-07-03 16:01:43.015 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('名片', 1, '2019-07-03 16:01:43.159 ', '2019-07-05 01:37:19.355 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料模型', 1, '2019-07-03 16:01:43.710 ', '2019-07-05 01:37:19.837 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('面膜', 8, '2019-07-03 16:01:44.026 ', '2019-07-05 01:37:17.199 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('磨刀器', 1, '2019-07-03 16:01:44.373 ', '2019-07-03 16:01:44.373 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('磨砂膏', 8, '2019-07-03 16:01:44.523 ', '2019-07-05 01:37:17.703 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('摩丝', 8, '2019-07-03 16:01:44.713 ', '2019-07-03 16:01:44.713 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('摩易擦', 8, '2019-07-03 16:01:44.945 ', '2019-07-03 16:01:44.945 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('魔笔', 8, '2019-07-03 16:01:45.119 ', '2019-07-03 16:01:45.119 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('抹布', 8, '2019-07-03 16:01:45.468 ', '2019-07-05 01:37:17.166 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废抹布', 8, '2019-07-03 16:01:45.632 ', '2019-07-03 16:01:45.632 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧抹布', 8, '2019-07-03 16:01:45.761 ', '2019-07-03 16:01:45.761 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('速溶饮料粉末', 4, '2019-07-03 16:01:45.935 ', '2019-07-03 16:01:45.935 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('墨粉', 8, '2019-07-03 16:01:46.162 ', '2019-07-03 16:01:46.162 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('墨盒', 1, '2019-07-03 16:01:46.298 ', '2019-07-03 16:01:46.298 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('默写本', 1, '2019-07-03 16:01:46.713 ', '2019-07-03 16:01:46.713 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('泡沫', 1, '2019-07-03 16:01:46.870 ', '2019-07-03 16:01:46.870 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('肉沫', 4, '2019-07-03 16:01:46.993 ', '2019-07-03 16:01:46.993 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('泡沫板', 1, '2019-07-03 16:01:47.112 ', '2019-07-05 01:37:19.478 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牡蛎壳', 8, '2019-07-03 16:01:47.793 ', '2019-07-05 01:37:17.371 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牡蛎肉', 4, '2019-07-03 16:01:47.910 ', '2019-07-03 16:01:47.910 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('吃剩下的牡蛎壳', 8, '2019-07-03 16:01:48.044 ', '2019-07-03 16:01:48.044 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('屏幕', 1, '2019-07-03 16:01:48.482 ', '2019-07-03 16:01:48.482 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('荧幕', 1, '2019-07-03 16:01:48.643 ', '2019-07-03 16:01:48.643 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电脑屏幕', 1, '2019-07-03 16:01:48.768 ', '2019-07-03 16:01:48.768 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('树叶是那种垃圾', 4, '2019-07-03 16:01:49.730 ', '2019-07-03 16:01:49.730 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('收纳箱', 1, '2019-07-03 16:01:49.939 ', '2019-07-03 16:01:49.939 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料收纳盒', 1, '2019-07-03 16:01:50.065 ', '2019-07-05 01:37:19.505 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('奶粉', 4, '2019-07-03 16:01:50.319 ', '2019-07-05 01:40:35.214 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('奶盒', 1, '2019-07-03 16:01:50.447 ', '2019-07-03 16:01:50.447 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('南瓜', 4, '2019-07-03 16:01:50.702 ', '2019-07-03 16:01:50.702 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('南瓜皮', 4, '2019-07-03 16:01:50.862 ', '2019-07-05 01:40:35.318 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('南瓜子壳', 4, '2019-07-03 16:01:51.001 ', '2019-07-05 01:37:16.790 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('笔囊', 8, '2019-07-03 16:01:51.235 ', '2019-07-03 16:01:51.235 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('胶囊', 2, '2019-07-03 16:01:51.379 ', '2019-07-05 01:37:20.192 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('墨囊', 8, '2019-07-03 16:01:51.506 ', '2019-07-05 01:37:18.285 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电脑', 1, '2019-07-03 16:01:51.715 ', '2019-07-05 01:37:18.869 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('猪脑', 4, '2019-07-03 16:01:51.847 ', '2019-07-03 16:01:51.847 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电脑包', 1, '2019-07-03 16:01:51.994 ', '2019-07-05 01:37:19.206 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('闹钟', 1, '2019-07-03 16:01:52.214 ', '2019-07-05 01:37:19.828 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('内裤', 8, '2019-07-03 16:01:52.522 ', '2019-07-05 01:37:17.625 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('内衣', 8, '2019-07-03 16:01:52.654 ', '2019-07-05 01:37:17.454 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('内脏', 4, '2019-07-03 16:01:52.782 ', '2019-07-03 16:01:52.782 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('花泥', 8, '2019-07-03 16:02:47.835 ', '2019-07-05 01:37:18.849 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('尼龙绳', 8, '2019-07-03 16:02:48.354 ', '2019-07-03 16:02:48.354 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('尼龙丝袜', 8, '2019-07-03 16:02:48.491 ', '2019-07-03 16:02:48.491 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('尼龙制品', 8, '2019-07-03 16:02:48.649 ', '2019-07-05 01:37:17.945 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('油腻的餐巾纸', 8, '2019-07-03 16:02:48.933 ', '2019-07-03 16:02:48.933 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('年糕', 4, '2019-07-03 16:02:49.275 ', '2019-07-05 01:37:16.686 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('少年报', 1, '2019-07-03 16:02:49.417 ', '2019-07-03 16:02:49.417 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('尿布', 8, '2019-07-03 16:02:50.182 ', '2019-07-03 16:02:50.182 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('尿垫', 8, '2019-07-03 16:02:50.333 ', '2019-07-05 01:37:17.479 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('尿裤', 8, '2019-07-03 16:02:50.486 ', '2019-07-03 16:02:50.486 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('镍镉电池', 2, '2019-07-03 16:02:50.870 ', '2019-07-05 01:37:20.086 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牛', 4, '2019-07-03 16:02:51.412 ', '2019-07-03 16:02:51.412 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料纽扣', 1, '2019-07-03 16:02:52.181 ', '2019-07-03 16:02:52.181 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('农药片', 2, '2019-07-03 16:02:52.715 ', '2019-07-03 16:02:52.715 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('圣女果', 4, '2019-07-03 16:02:53.109 ', '2019-07-03 16:02:53.109 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('女生内衣', 8, '2019-07-03 16:02:53.269 ', '2019-07-03 16:02:53.269 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('女性卫生用品', 8, '2019-07-03 16:02:53.405 ', '2019-07-03 16:02:53.405 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('暖瓶', 1, '2019-07-03 16:02:53.577 ', '2019-07-03 16:02:53.577 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('保暖瓶', 1, '2019-07-03 16:02:53.827 ', '2019-07-03 16:02:53.827 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('呕吐包', 8, '2019-07-03 16:02:54.535 ', '2019-07-03 16:02:54.535 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('呕吐物', 4, '2019-07-03 16:02:54.674 ', '2019-07-03 16:02:54.674 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('布偶', 1, '2019-07-03 16:02:54.849 ', '2019-07-03 16:02:54.849 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玩偶', 1, '2019-07-03 16:02:54.956 ', '2019-07-03 16:02:54.956 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('布玩偶', 1, '2019-07-03 16:02:55.065 ', '2019-07-03 16:02:55.065 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('手帕', 8, '2019-07-03 16:02:55.550 ', '2019-07-05 01:37:18.110 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电蚊拍', 1, '2019-07-03 16:02:55.971 ', '2019-07-03 16:02:55.971 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('大排', 4, '2019-07-03 16:02:56.264 ', '2019-07-05 01:37:16.509 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸡排', 4, '2019-07-03 16:02:56.402 ', '2019-07-05 01:37:16.556 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铜牌', 1, '2019-07-03 16:02:56.709 ', '2019-07-03 16:02:56.709 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('菠萝派', 4, '2019-07-03 16:02:56.967 ', '2019-07-03 16:02:56.967 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('U盘', 1, '2019-07-03 16:02:57.217 ', '2019-07-05 01:37:19.276 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('乒乓板', 8, '2019-07-03 16:02:57.703 ', '2019-07-03 16:02:57.703 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('乒乓球', 1, '2019-07-03 16:02:57.829 ', '2019-07-13 16:37:15.761 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('日抛美瞳', 8, '2019-07-03 16:02:58.151 ', '2019-07-03 16:02:58.151 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('灯炮', 2, '2019-07-03 16:02:58.788 ', '2019-07-03 16:02:58.788 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('泡面', 4, '2019-07-03 16:02:59.319 ', '2019-07-03 16:02:59.319 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('泡馍', 4, '2019-07-03 16:02:59.468 ', '2019-07-03 16:02:59.468 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水培植物', 4, '2019-07-03 16:02:59.732 ', '2019-07-03 16:02:59.732 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电脑配件', 1, '2019-07-03 16:03:00.003 ', '2019-07-03 16:03:00.003 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铝喷雾瓶', 1, '2019-07-03 16:03:00.291 ', '2019-07-03 16:03:00.291 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('喷蟑螂瓶', 2, '2019-07-03 16:03:00.424 ', '2019-07-03 16:03:00.424 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('杀虫喷雾', 2, '2019-07-03 16:03:00.574 ', '2019-07-05 01:37:20.170 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('花盆', 8, '2019-07-03 16:03:00.735 ', '2019-07-05 01:37:17.571 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铝盆', 1, '2019-07-03 16:03:00.860 ', '2019-07-03 16:03:00.860 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('盆栽', 4, '2019-07-03 16:03:00.973 ', '2019-07-03 16:03:00.973 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('帐篷', 16, '2019-07-03 16:03:01.670 ', '2019-08-02 00:12:51.690 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('膨化食品', 4, '2019-07-03 16:03:01.831 ', '2019-07-05 01:37:16.721 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('膨化食品包装', 8, '2019-07-03 16:03:01.967 ', '2019-07-03 16:03:01.967 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('披萨', 4, '2019-07-03 16:03:02.482 ', '2019-07-05 01:37:16.507 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('雨披', 8, '2019-07-03 16:03:02.612 ', '2019-07-05 01:37:18.004 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('披萨盒', 8, '2019-07-03 16:03:02.756 ', '2019-07-05 01:37:18.055 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('啤酒盖', 1, '2019-07-03 16:03:03.051 ', '2019-07-05 01:37:19.632 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('啤酒罐', 1, '2019-07-03 16:03:03.191 ', '2019-07-05 01:37:19.556 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('啤酒瓶', 1, '2019-07-03 16:03:03.330 ', '2019-07-05 01:37:19.097 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('菜皮', 4, '2019-07-03 16:03:03.614 ', '2019-07-05 01:40:35.030 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('草皮', 4, '2019-07-03 16:03:03.738 ', '2019-07-03 16:03:03.738 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('漂白粉', 8, '2019-07-03 16:03:06.975 ', '2019-07-03 16:03:06.975 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('漂白剂罐', 2, '2019-07-03 16:03:07.110 ', '2019-07-03 16:03:07.110 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('票', 8, '2019-07-03 16:03:07.325 ', '2019-07-03 16:03:07.325 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('食品', 4, '2019-07-03 16:03:07.999 ', '2019-07-03 16:03:07.999 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('饰品', 8, '2019-07-03 16:03:08.136 ', '2019-07-03 16:03:08.136 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('药品', 2, '2019-07-03 16:03:08.245 ', '2019-07-03 16:03:08.245 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('苹果', 4, '2019-07-03 16:03:08.544 ', '2019-07-05 01:37:16.825 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('烂苹果', 4, '2019-07-03 16:03:08.673 ', '2019-07-03 16:03:08.673 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('苹果核', 4, '2019-07-03 16:03:08.816 ', '2019-07-05 01:40:34.926 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('平底锅', 1, '2019-07-03 16:03:09.031 ', '2019-07-05 01:37:19.873 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('平板玻璃', 1, '2019-07-03 16:03:09.146 ', '2019-07-05 01:37:19.131 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('平板电脑', 1, '2019-07-03 16:03:09.288 ', '2019-07-03 16:03:09.288 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电瓶', 1, '2019-07-03 16:03:09.626 ', '2019-07-05 01:37:19.368 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('破布', 1, '2019-07-03 16:03:10.073 ', '2019-07-03 16:03:10.073 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('破碗', 8, '2019-07-03 16:03:10.213 ', '2019-07-03 16:03:10.213 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('破瓷品', 8, '2019-07-03 16:03:10.347 ', '2019-07-03 16:03:10.347 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('扑克牌', 1, '2019-07-03 16:03:10.700 ', '2019-07-03 16:03:10.700 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('猪肉铺', 4, '2019-07-03 16:03:10.906 ', '2019-07-03 16:03:10.906 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('葡萄', 4, '2019-07-03 16:03:11.139 ', '2019-07-03 16:03:11.139 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('葡萄皮', 4, '2019-07-03 16:03:11.406 ', '2019-07-05 01:40:34.950 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('普通塑料袋', 8, '2019-07-03 16:03:12.056 ', '2019-07-03 16:03:12.056 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('过期药', 2, '2019-07-03 16:03:12.529 ', '2019-07-03 16:03:12.529 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('过期饼干', 4, '2019-07-03 16:03:12.674 ', '2019-07-03 16:03:12.674 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('漆桶', 2, '2019-07-03 16:03:13.238 ', '2019-07-03 16:03:13.238 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('油漆', 2, '2019-07-03 16:03:13.372 ', '2019-07-03 16:03:13.372 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废油漆', 2, '2019-07-03 16:03:13.526 ', '2019-07-05 01:37:20.074 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('其他垃圾桶', 1, '2019-07-03 16:03:13.815 ', '2019-07-03 16:03:13.815 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('象棋', 8, '2019-07-03 16:03:13.981 ', '2019-07-05 01:37:18.703 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('曲奇', 4, '2019-07-03 16:03:14.163 ', '2019-07-05 01:37:16.718 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('吃过的奇趣蛋', 8, '2019-07-03 16:03:14.433 ', '2019-07-03 16:03:14.433 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电器', 1, '2019-07-03 16:03:16.485 ', '2019-07-03 16:03:16.485 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('陶器', 8, '2019-07-03 16:03:16.616 ', '2019-07-05 01:37:18.548 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('气球', 8, '2019-07-03 16:03:16.806 ', '2019-07-05 01:37:18.786 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('充气娃', 1, '2019-07-03 16:03:16.951 ', '2019-07-03 16:03:16.951 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('煤气罐', 1, '2019-07-03 16:03:17.080 ', '2019-07-05 01:37:19.808 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废弃布包', 1, '2019-07-03 16:03:17.298 ', '2019-07-03 16:03:17.298 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废弃地毯', 1, '2019-07-03 16:03:17.426 ', '2019-07-03 16:03:17.426 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废弃电线', 1, '2019-07-03 16:03:17.549 ', '2019-07-03 16:03:17.549 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铅笔', 8, '2019-07-03 16:03:18.442 ', '2019-07-05 01:37:17.311 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铅桶', 1, '2019-07-03 16:03:18.558 ', '2019-07-03 16:03:18.558 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铅芯', 8, '2019-07-03 16:03:18.685 ', '2019-07-03 16:03:18.685 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('棉签', 8, '2019-07-03 16:03:19.513 ', '2019-07-05 01:37:17.375 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('指甲钳', 1, '2019-07-03 16:03:19.907 ', '2019-07-05 01:37:19.094 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('金枪鱼罐头', 1, '2019-07-03 16:03:21.617 ', '2019-07-03 16:03:21.617 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('墙刷', 8, '2019-07-03 16:03:23.042 ', '2019-07-03 16:03:23.042 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('一块墙皮', 8, '2019-07-03 16:03:23.177 ', '2019-07-03 16:03:23.177 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('强化玻璃', 1, '2019-07-03 16:03:23.519 ', '2019-07-03 16:03:23.519 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('敲碎的碗', 8, '2019-07-03 16:03:23.822 ', '2019-07-03 16:03:23.822 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('巧克力袋子', 8, '2019-07-03 16:03:25.224 ', '2019-07-03 16:03:25.224 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('巧克力盒子', 8, '2019-07-03 16:03:25.353 ', '2019-07-03 16:03:25.353 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('茄子', 4, '2019-07-03 16:03:25.989 ', '2019-07-05 01:40:34.931 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电子琴', 1, '2019-07-03 16:03:26.747 ', '2019-07-03 16:03:26.747 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('芹菜', 4, '2019-07-03 16:03:27.090 ', '2019-07-05 01:37:16.880 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('芹菜叶', 4, '2019-07-03 16:03:27.206 ', '2019-07-03 16:03:27.206 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('家禽内脏', 4, '2019-07-03 16:03:29.620 ', '2019-07-03 16:03:29.620 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('青菜', 4, '2019-07-03 16:03:30.185 ', '2019-07-05 01:40:35.286 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('氢气罐', 1, '2019-07-03 16:03:30.432 ', '2019-07-03 16:03:30.432 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('氢气球', 8, '2019-07-03 16:03:30.550 ', '2019-07-05 01:37:18.785 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('氢气球充气钢瓶', 1, '2019-07-03 16:03:30.675 ', '2019-07-03 16:03:30.675 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('滤清器', 8, '2019-07-03 16:03:31.117 ', '2019-07-03 16:03:31.117 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('汽车空气滤清器', 1, '2019-07-03 16:03:31.395 ', '2019-07-03 16:03:31.395 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('情趣内衣', 8, '2019-07-03 16:03:31.747 ', '2019-07-03 16:03:31.747 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('琼脂', 4, '2019-07-03 16:03:32.056 ', '2019-07-03 16:03:32.056 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('营养琼脂', 4, '2019-07-03 16:03:32.187 ', '2019-07-03 16:03:32.187 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('秋衣', 1, '2019-07-03 16:03:32.441 ', '2019-07-03 16:03:32.441 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('棉球', 8, '2019-07-03 16:03:32.719 ', '2019-07-05 01:37:18.573 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('皮球', 1, '2019-07-03 16:03:32.851 ', '2019-07-05 01:37:19.756 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('驱蚊瓶', 1, '2019-07-03 16:03:34.731 ', '2019-07-03 16:03:34.731 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('发圈', 8, '2019-07-03 16:03:36.176 ', '2019-07-03 16:03:36.176 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铁圈', 1, '2019-07-03 16:03:36.305 ', '2019-07-03 16:03:36.305 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('甜甜圈', 4, '2019-07-03 16:03:36.427 ', '2019-07-03 16:03:36.427 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('围裙', 1, '2019-07-03 16:03:37.804 ', '2019-07-03 16:03:37.804 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('燃油罐', 1, '2019-07-03 16:03:38.074 ', '2019-07-03 16:03:38.074 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('染发剂罐', 2, '2019-07-03 16:03:38.401 ', '2019-07-03 16:03:38.401 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('染发剂壳', 2, '2019-07-03 16:03:38.566 ', '2019-07-05 01:37:20.161 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('污染报纸', 8, '2019-07-03 16:03:38.719 ', '2019-07-03 16:03:38.719 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('丝瓜瓤', 4, '2019-07-03 16:03:39.908 ', '2019-07-03 16:03:39.908 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电热毯', 1, '2019-07-03 16:03:41.470 ', '2019-07-05 01:37:19.304 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('退热贴', 8, '2019-07-03 16:03:41.610 ', '2019-07-05 01:37:17.453 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电热水袋', 1, '2019-07-03 16:03:41.729 ', '2019-07-03 16:03:41.729 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('杏仁', 4, '2019-07-03 16:03:41.965 ', '2019-07-05 01:37:16.515 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('瓜子仁', 4, '2019-07-03 16:03:42.092 ', '2019-07-05 01:37:17.066 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('虾仁壳', 4, '2019-07-03 16:03:42.242 ', '2019-07-03 16:03:42.242 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('无人机', 1, '2019-07-03 16:03:42.536 ', '2019-07-05 01:37:19.919 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('仙人球', 4, '2019-07-03 16:03:42.653 ', '2019-07-05 01:37:16.914 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('日报', 1, '2019-07-03 16:03:43.349 ', '2019-07-03 16:03:43.349 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('日光灯', 2, '2019-07-03 16:03:43.464 ', '2019-07-05 01:37:20.173 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('有机溶剂', 2, '2019-07-03 16:03:44.507 ', '2019-07-03 16:03:44.507 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('速溶咖啡包装', 8, '2019-07-03 16:03:44.649 ', '2019-07-05 01:37:18.635 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电容器', 1, '2019-07-03 16:03:44.827 ', '2019-07-03 16:03:44.827 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('美容仪', 1, '2019-07-03 16:03:44.954 ', '2019-07-03 16:03:44.954 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玻璃制容器', 1, '2019-07-03 16:03:45.088 ', '2019-07-03 16:03:45.088 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('绒娃娃', 1, '2019-07-03 16:03:45.260 ', '2019-07-03 16:03:45.260 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('绒线衣', 1, '2019-07-03 16:03:45.387 ', '2019-07-03 16:03:45.387 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('羽绒被', 1, '2019-07-03 16:03:45.510 ', '2019-07-03 16:03:45.510 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('棉柔巾', 8, '2019-07-03 16:03:45.764 ', '2019-07-05 01:37:17.808 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('肉', 4, '2019-07-03 16:03:45.936 ', '2019-07-03 16:03:45.936 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('大骨(如:猪腿骨)', 8, '2019-07-03 16:03:46.665 ', '2019-07-03 16:03:46.665 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('乳牙', 8, '2019-07-03 16:03:46.903 ', '2019-07-03 16:03:46.903 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('豆腐乳', 4, '2019-07-03 16:03:47.034 ', '2019-07-03 16:03:47.034 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('沐浴乳', 8, '2019-07-03 16:03:47.176 ', '2019-07-03 16:03:47.176 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('入厕用纸', 8, '2019-07-03 16:03:47.393 ', '2019-07-03 16:03:47.393 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('软骨', 4, '2019-07-03 16:03:47.722 ', '2019-07-03 16:03:47.722 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('软盘', 8, '2019-07-03 16:03:47.833 ', '2019-07-03 16:03:47.833 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('软糖', 4, '2019-07-03 16:03:47.964 ', '2019-07-05 01:37:16.727 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('润发乳', 8, '2019-07-03 16:03:49.609 ', '2019-07-03 16:03:49.609 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('花洒', 1, '2019-07-03 16:03:50.082 ', '2019-07-03 16:03:50.082 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('披萨饼盒', 8, '2019-07-03 16:03:50.279 ', '2019-07-03 16:03:50.279 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木塞', 8, '2019-07-03 16:03:50.547 ', '2019-07-03 16:03:50.547 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('软木塞', 8, '2019-07-03 16:03:50.698 ', '2019-07-05 01:37:18.076 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('酒瓶塞子', 8, '2019-07-03 16:03:50.893 ', '2019-07-03 16:03:50.893 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('三杯鸡', 4, '2019-07-03 16:03:51.166 ', '2019-07-03 16:03:51.166 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('三文鱼', 4, '2019-07-03 16:03:51.302 ', '2019-07-05 01:37:16.589 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('伞', 8, '2019-07-03 16:03:51.520 ', '2019-07-03 16:03:51.520 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('雨伞', 8, '2019-07-03 16:03:51.654 ', '2019-07-03 16:03:51.654 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧雨伞', 8, '2019-07-03 16:03:51.792 ', '2019-07-03 16:03:51.792 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('散粉', 8, '2019-07-03 16:03:51.959 ', '2019-07-03 16:03:51.959 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('桑叶', 4, '2019-07-03 16:03:52.120 ', '2019-07-03 16:03:52.120 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('扫帚', 8, '2019-07-03 16:03:52.584 ', '2019-07-05 01:37:18.788 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('扫地机', 1, '2019-07-03 16:03:52.721 ', '2019-07-05 01:37:19.188 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('彩色笔', 8, '2019-07-03 16:03:52.989 ', '2019-07-03 16:03:52.989 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('标签色带', 8, '2019-07-03 16:03:53.209 ', '2019-07-03 16:03:53.209 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('彩色玻璃', 1, '2019-07-03 16:03:53.338 ', '2019-07-03 16:03:53.338 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('猫砂', 8, '2019-07-03 16:03:53.655 ', '2019-07-03 16:03:53.655 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('砂锅', 8, '2019-07-03 16:03:53.777 ', '2019-07-05 01:37:18.177 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('砂皮', 8, '2019-07-03 16:03:53.932 ', '2019-07-03 16:03:53.932 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('杀虫剂', 2, '2019-07-03 16:03:54.162 ', '2019-07-05 01:37:20.076 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('猫沙', 8, '2019-07-03 16:04:33.210 ', '2019-07-03 16:04:33.210 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纱布', 8, '2019-07-03 16:04:52.632 ', '2019-07-05 01:37:17.780 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纱窗', 8, '2019-07-03 16:04:52.770 ', '2019-07-05 01:37:18.708 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('防晒霜', 8, '2019-07-03 16:04:53.099 ', '2019-07-05 01:37:17.775 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('防晒霜罐', 1, '2019-07-03 16:04:53.239 ', '2019-07-03 16:04:53.239 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('山芋', 4, '2019-07-03 16:04:53.564 ', '2019-07-05 01:37:16.859 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('山竹', 4, '2019-07-03 16:04:53.694 ', '2019-07-03 16:04:53.694 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('羊毛衫', 1, '2019-07-03 16:04:54.251 ', '2019-07-05 01:37:19.152 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电扇', 1, '2019-07-03 16:04:54.763 ', '2019-07-05 01:37:19.885 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('烫伤膏', 2, '2019-07-03 16:04:55.419 ', '2019-07-05 01:37:20.223 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纸质商标', 8, '2019-07-03 16:04:55.602 ', '2019-07-03 16:04:55.602 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('上衣', 1, '2019-07-03 16:04:55.867 ', '2019-07-03 16:04:55.867 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('床上用品', 1, '2019-07-03 16:04:56.019 ', '2019-07-03 16:04:56.019 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('烧鸡', 4, '2019-07-03 16:04:56.418 ', '2019-07-03 16:04:56.418 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('红烧肉', 4, '2019-07-03 16:04:56.550 ', '2019-07-03 16:04:56.550 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('勺子', 1, '2019-07-03 16:04:56.753 ', '2019-07-03 16:04:56.753 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料勺', 8, '2019-07-03 16:04:56.886 ', '2019-07-05 01:37:17.738 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蛇皮袋', 8, '2019-07-03 16:04:57.385 ', '2019-07-13 16:37:52.363 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('摄像机', 1, '2019-07-03 16:04:57.681 ', '2019-07-03 16:04:57.681 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('摄像头', 1, '2019-07-03 16:04:57.801 ', '2019-07-05 01:37:19.242 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('注射器', 8, '2019-07-03 16:04:57.964 ', '2019-07-05 01:37:17.265 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('无菌注射器包装', 8, '2019-07-03 16:04:58.217 ', '2019-07-03 16:04:58.217 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('养身壶', 1, '2019-07-03 16:04:58.992 ', '2019-07-03 16:04:58.992 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('花生', 4, '2019-07-03 16:04:59.704 ', '2019-07-05 01:40:35.032 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('生菜', 4, '2019-07-03 16:04:59.854 ', '2019-07-03 16:04:59.854 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('生蚝', 8, '2019-07-03 16:04:59.973 ', '2019-07-13 16:37:55.757 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('棉绳', 8, '2019-07-03 16:05:00.327 ', '2019-07-05 01:37:18.034 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('绳子', 1, '2019-07-03 16:05:00.447 ', '2019-07-05 01:37:19.157 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('盛装湿垃圾的垃圾袋', 8, '2019-07-03 16:05:00.665 ', '2019-07-03 16:05:00.665 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('剩菜', 4, '2019-07-03 16:05:00.822 ', '2019-07-03 16:05:00.822 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('剩餐', 4, '2019-07-03 16:05:00.973 ', '2019-07-03 16:05:00.973 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('剩饭', 4, '2019-07-03 16:05:01.083 ', '2019-07-03 16:05:01.083 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('螺狮', 4, '2019-07-03 16:05:01.658 ', '2019-07-03 16:05:01.658 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('螺狮壳', 4, '2019-07-03 16:05:01.780 ', '2019-07-03 16:05:01.780 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('施工安全帽', 1, '2019-07-03 16:05:01.936 ', '2019-07-03 16:05:01.936 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('湿纸', 8, '2019-07-03 16:05:02.090 ', '2019-07-03 16:05:02.090 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('使用的餐巾纸', 8, '2019-07-03 16:05:04.074 ', '2019-07-03 16:05:04.074 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('使用过的餐盒', 8, '2019-07-03 16:05:04.232 ', '2019-07-03 16:05:04.232 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('使用过的猫砂', 8, '2019-07-03 16:05:04.382 ', '2019-07-03 16:05:04.382 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废台式机', 1, '2019-07-03 16:05:05.126 ', '2019-07-03 16:05:05.126 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('硬式磁碟机', 1, '2019-07-03 16:05:05.272 ', '2019-07-03 16:05:05.272 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('显示器', 1, '2019-07-03 16:05:05.447 ', '2019-07-05 01:37:19.774 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('显示屏幕', 1, '2019-07-03 16:05:05.564 ', '2019-07-03 16:05:05.564 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('芝士', 4, '2019-07-03 16:05:05.735 ', '2019-07-05 01:40:35.330 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('芝士片', 4, '2019-07-03 16:05:05.999 ', '2019-07-03 16:05:05.999 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('西红柿', 4, '2019-07-03 16:05:06.207 ', '2019-07-05 01:40:35.296 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('乐事薯片', 4, '2019-07-03 16:05:06.478 ', '2019-07-05 01:37:16.752 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('擦拭过的餐巾纸', 8, '2019-07-03 16:05:06.662 ', '2019-07-03 16:05:06.662 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('油漆稀释剂', 2, '2019-07-03 16:05:07.198 ', '2019-07-03 16:05:07.198 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电视', 1, '2019-07-03 16:05:08.044 ', '2019-07-03 16:05:08.044 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电视机', 1, '2019-07-03 16:05:08.156 ', '2019-07-05 01:37:19.252 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废电视', 1, '2019-07-03 16:05:08.291 ', '2019-07-03 16:05:08.291 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('试卷', 1, '2019-07-03 16:05:08.484 ', '2019-07-05 01:37:19.867 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('试纸', 8, '2019-07-03 16:05:08.622 ', '2019-07-03 16:05:08.622 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('寿司', 4, '2019-07-03 16:05:09.404 ', '2019-07-03 16:05:09.404 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('受污纸巾', 8, '2019-07-03 16:05:09.718 ', '2019-07-03 16:05:09.718 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('受潮的纸张', 1, '2019-07-03 16:05:09.863 ', '2019-07-03 16:05:09.863 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('受过污染的纸', 8, '2019-07-03 16:05:10.001 ', '2019-07-03 16:05:10.001 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蔬菜', 4, '2019-07-03 16:05:10.276 ', '2019-07-05 01:40:35.197 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蔬果', 4, '2019-07-03 16:05:10.392 ', '2019-07-03 16:05:10.392 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('烂蔬菜', 4, '2019-07-03 16:05:10.543 ', '2019-07-03 16:05:10.543 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木梳', 1, '2019-07-03 16:05:11.091 ', '2019-07-05 01:37:19.472 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('梳子', 8, '2019-07-03 16:05:11.209 ', '2019-07-03 16:05:11.209 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木梳子', 1, '2019-07-03 16:05:11.375 ', '2019-07-03 16:05:11.375 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('书', 1, '2019-07-03 16:05:11.873 ', '2019-07-03 16:05:11.873 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('熟菜', 4, '2019-07-03 16:05:12.262 ', '2019-07-03 16:05:12.262 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('熟鸡蛋', 4, '2019-07-03 16:05:12.413 ', '2019-07-03 16:05:12.413 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('熟虾壳', 4, '2019-07-03 16:05:12.552 ', '2019-07-03 16:05:12.552 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('薯片', 4, '2019-07-03 16:05:12.860 ', '2019-07-05 01:37:16.558 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('甜芦黍', 4, '2019-07-03 16:05:13.244 ', '2019-07-03 16:05:13.244 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废金属', 1, '2019-07-03 16:05:13.823 ', '2019-07-03 16:05:13.823 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('金属罐', 1, '2019-07-03 16:05:13.961 ', '2019-07-05 01:37:18.921 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('美术袋', 8, '2019-07-03 16:05:14.152 ', '2019-07-03 16:05:14.152 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('美术黏土', 8, '2019-07-03 16:05:14.288 ', '2019-07-03 16:05:14.288 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('树皮', 4, '2019-07-03 16:05:14.621 ', '2019-07-05 01:37:16.827 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('数学书', 1, '2019-07-03 16:05:15.019 ', '2019-07-03 16:05:15.019 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('漱口水瓶子', 1, '2019-07-03 16:05:15.334 ', '2019-07-03 16:05:15.334 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牙刷', 8, '2019-07-03 16:05:15.553 ', '2019-07-05 01:37:17.574 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('化妆刷', 8, '2019-07-03 16:05:15.690 ', '2019-07-05 01:37:17.211 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('面霜', 8, '2019-07-03 16:05:16.160 ', '2019-07-03 16:05:16.160 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('眼霜', 8, '2019-07-03 16:05:16.294 ', '2019-07-03 16:05:16.294 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('双面胶', 8, '2019-07-03 16:05:16.470 ', '2019-07-05 01:37:17.905 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('双面胶带', 8, '2019-07-03 16:05:16.761 ', '2019-07-03 16:05:16.761 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('爽肤水瓶', 1, '2019-07-03 16:05:16.943 ', '2019-07-05 01:37:19.293 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('胶水', 8, '2019-07-03 16:05:17.180 ', '2019-07-05 01:37:18.409 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水笔', 8, '2019-07-03 16:05:17.347 ', '2019-07-05 01:37:17.309 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水彩', 8, '2019-07-03 16:05:17.468 ', '2019-07-03 16:05:17.468 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纸质说明书', 1, '2019-07-03 16:05:17.892 ', '2019-07-03 16:05:17.892 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('瓦斯桶', 1, '2019-07-03 16:05:18.246 ', '2019-07-03 16:05:18.246 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('手撕猪肉', 4, '2019-07-03 16:05:18.711 ', '2019-07-03 16:05:18.711 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('钢丝', 1, '2019-07-03 16:05:19.492 ', '2019-07-03 16:05:19.492 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('死花', 4, '2019-07-03 16:05:19.805 ', '2019-07-03 16:05:19.805 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('饲料', 4, '2019-07-03 16:05:20.343 ', '2019-07-03 16:05:20.343 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('猫饲料', 4, '2019-07-03 16:05:20.483 ', '2019-07-03 16:05:20.483 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('饲料袋', 8, '2019-07-03 16:05:20.733 ', '2019-07-03 16:05:20.733 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('松子', 4, '2019-07-03 16:05:20.959 ', '2019-07-05 01:37:17.085 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('松子壳', 4, '2019-07-03 16:05:21.093 ', '2019-07-05 01:40:35.150 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('松木猫砂', 8, '2019-07-03 16:05:21.216 ', '2019-07-05 01:37:17.971 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('素菜', 4, '2019-07-03 16:05:21.992 ', '2019-07-03 16:05:21.992 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('快速面盒', 8, '2019-07-03 16:05:22.166 ', '2019-07-03 16:05:22.166 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('速冻饺子', 4, '2019-07-03 16:05:22.296 ', '2019-07-03 16:05:22.296 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('速冻水饺', 4, '2019-07-03 16:05:22.466 ', '2019-07-05 01:37:16.549 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('粟子壳', 4, '2019-07-03 16:05:22.659 ', '2019-07-03 16:05:22.659 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('甜芦粟', 4, '2019-07-03 16:05:22.782 ', '2019-07-05 01:37:17.082 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('甜芦粟皮', 8, '2019-07-03 16:05:22.898 ', '2019-07-05 01:37:18.835 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料', 1, '2019-07-03 16:05:23.183 ', '2019-07-03 16:05:23.183 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废塑料', 1, '2019-07-03 16:05:23.317 ', '2019-07-03 16:05:23.317 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('酸奶袋', 8, '2019-07-03 16:05:23.826 ', '2019-07-05 01:37:18.157 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('酸奶盖', 8, '2019-07-03 16:05:23.961 ', '2019-07-03 16:05:23.961 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蒜', 4, '2019-07-03 16:05:24.150 ', '2019-07-03 16:05:24.150 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('大蒜', 4, '2019-07-03 16:05:24.437 ', '2019-07-03 16:05:24.437 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废弃计算机', 1, '2019-07-03 16:05:24.616 ', '2019-07-03 16:05:24.616 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('碎布', 1, '2019-07-03 16:05:25.030 ', '2019-07-03 16:05:25.030 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('碎瓷', 8, '2019-07-03 16:05:25.160 ', '2019-07-03 16:05:25.160 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('碎骨', 4, '2019-07-03 16:05:25.289 ', '2019-07-03 16:05:25.289 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玉米穗', 4, '2019-07-03 16:05:25.499 ', '2019-07-03 16:05:25.499 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('破损瓷器', 8, '2019-07-03 16:05:25.891 ', '2019-07-03 16:05:25.891 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('污损纸张', 8, '2019-07-03 16:05:26.015 ', '2019-07-05 01:37:17.914 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('破损垃圾袋', 8, '2019-07-03 16:05:26.158 ', '2019-07-03 16:05:26.158 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('笋壳', 4, '2019-07-03 16:05:26.322 ', '2019-07-05 01:40:35.199 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('笋皮', 4, '2019-07-03 16:05:26.440 ', '2019-07-05 01:40:35.356 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('竹笋', 4, '2019-07-03 16:05:26.565 ', '2019-07-05 01:40:35.232 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('梭子蟹', 4, '2019-07-03 16:05:26.794 ', '2019-07-05 01:37:16.713 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('压缩瓶', 1, '2019-07-03 16:05:27.020 ', '2019-07-03 16:05:27.020 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('锁', 1, '2019-07-03 16:05:27.271 ', '2019-07-03 16:05:27.271 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('锁头', 1, '2019-07-03 16:05:27.406 ', '2019-07-03 16:05:27.406 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('厕所手纸', 8, '2019-07-03 16:05:27.929 ', '2019-07-03 16:05:27.929 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蛋挞', 4, '2019-07-03 16:05:28.351 ', '2019-07-05 01:40:35.315 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蛋挞壳', 8, '2019-07-03 16:05:28.506 ', '2019-07-03 16:05:28.506 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蛋挞皮', 4, '2019-07-03 16:05:28.724 ', '2019-07-05 01:37:16.720 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废踏垫', 8, '2019-07-03 16:05:28.958 ', '2019-07-03 16:05:28.958 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('脚踏板', 8, '2019-07-03 16:05:29.097 ', '2019-07-03 16:05:29.097 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('海苔', 4, '2019-07-03 16:05:30.147 ', '2019-07-05 01:37:16.627 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('海苔袋子', 8, '2019-07-03 16:05:30.257 ', '2019-07-03 16:05:30.257 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('台灯', 1, '2019-07-03 16:05:30.478 ', '2019-07-05 01:37:19.306 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('印台', 8, '2019-07-03 16:05:30.641 ', '2019-07-03 16:05:30.641 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('太阳帽', 1, '2019-07-03 16:05:30.902 ', '2019-07-03 16:05:30.902 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('太阳能热水管', 1, '2019-07-03 16:05:31.037 ', '2019-07-03 16:05:31.037 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('太阳能热水器', 1, '2019-07-03 16:05:31.162 ', '2019-07-03 16:05:31.162 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('痰盂罐', 1, '2019-07-03 16:05:31.714 ', '2019-07-03 16:05:31.714 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('毛毯', 1, '2019-07-03 16:05:32.156 ', '2019-07-05 01:37:19.076 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('碳灰', 8, '2019-07-03 16:05:32.388 ', '2019-07-03 16:05:32.388 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('碳粉匣', 1, '2019-07-03 16:05:32.520 ', '2019-07-03 16:05:32.520 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('碳纤维', 8, '2019-07-03 16:05:32.657 ', '2019-07-03 16:05:32.657 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木炭', 8, '2019-07-03 16:05:32.916 ', '2019-07-03 16:05:32.916 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('炭包', 8, '2019-07-03 16:05:33.035 ', '2019-07-03 16:05:33.035 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('汤骨', 8, '2019-07-03 16:05:33.193 ', '2019-07-03 16:05:33.193 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鱼汤', 4, '2019-07-03 16:05:33.346 ', '2019-07-03 16:05:33.346 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('火锅汤底', 4, '2019-07-03 16:05:33.486 ', '2019-07-03 16:05:33.486 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('搪瓷', 1, '2019-07-03 16:05:33.855 ', '2019-07-03 16:05:33.855 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('搪瓷杯', 8, '2019-07-03 16:05:33.988 ', '2019-07-03 16:05:33.988 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('搪瓷碗', 1, '2019-07-03 16:05:34.120 ', '2019-07-03 16:05:34.120 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('糖', 4, '2019-07-03 16:05:34.471 ', '2019-07-05 01:40:34.965 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('红糖', 4, '2019-07-03 16:05:34.729 ', '2019-07-03 16:05:34.729 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('麻辣烫', 4, '2019-07-03 16:05:36.107 ', '2019-07-05 01:40:35.217 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('黄桃', 4, '2019-07-03 16:05:36.494 ', '2019-07-03 16:05:36.494 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('桃板', 4, '2019-07-03 16:05:36.628 ', '2019-07-03 16:05:36.628 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('淘宝纸盒', 1, '2019-07-03 16:05:36.863 ', '2019-07-03 16:05:36.863 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('碎陶', 8, '2019-07-03 16:05:37.065 ', '2019-07-03 16:05:37.065 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('陶瓷', 8, '2019-07-03 16:05:37.192 ', '2019-07-03 16:05:37.192 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('笔套', 8, '2019-07-03 16:05:37.519 ', '2019-07-03 16:05:37.519 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('耳套', 1, '2019-07-03 16:05:37.647 ', '2019-07-03 16:05:37.647 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('藤席', 8, '2019-07-03 16:05:38.001 ', '2019-07-03 16:05:38.001 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧手提包', 1, '2019-07-03 16:05:38.912 ', '2019-07-05 01:37:18.944 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('手提电脑', 1, '2019-07-03 16:05:39.057 ', '2019-07-03 16:05:39.057 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蹄髈', 4, '2019-07-03 16:05:39.419 ', '2019-07-03 16:05:39.419 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('猪蹄', 4, '2019-07-03 16:05:39.534 ', '2019-07-05 01:40:35.281 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('擦鼻涕纸', 8, '2019-07-03 16:05:40.315 ', '2019-07-03 16:05:40.315 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('剃须刀', 1, '2019-07-03 16:05:40.641 ', '2019-07-05 01:37:19.019 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('剃须刀片', 1, '2019-07-03 16:05:40.769 ', '2019-07-05 01:37:19.590 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('剃须泡瓶', 1, '2019-07-03 16:05:40.935 ', '2019-07-03 16:05:40.935 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('泡沫填充', 8, '2019-07-03 16:05:41.348 ', '2019-07-03 16:05:41.348 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('田螺', 4, '2019-07-03 16:05:41.557 ', '2019-07-03 16:05:41.557 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('甜瓜', 4, '2019-07-03 16:05:41.824 ', '2019-07-03 16:05:41.824 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('布条', 1, '2019-07-03 16:05:42.155 ', '2019-07-03 16:05:42.155 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('面条', 4, '2019-07-03 16:05:42.290 ', '2019-07-05 01:40:35.048 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('跳蛋', 8, '2019-07-03 16:05:42.563 ', '2019-07-03 16:05:42.563 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('跳跳糖包装袋', 8, '2019-07-03 16:05:43.731 ', '2019-07-03 16:05:43.731 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('贴纸', 8, '2019-07-03 16:05:43.882 ', '2019-07-05 01:37:17.891 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铁', 1, '2019-07-03 16:05:44.041 ', '2019-07-03 16:05:44.041 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('暖宝宝帖', 8, '2019-07-03 16:05:44.464 ', '2019-07-03 16:05:44.464 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('餐厅纸', 8, '2019-07-03 16:05:44.646 ', '2019-07-03 16:05:44.646 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('家庭花卉', 4, '2019-07-03 16:05:45.119 ', '2019-07-03 16:05:45.119 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('家庭绿化', 4, '2019-07-03 16:05:45.260 ', '2019-07-03 16:05:45.260 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('家庭盆栽树叶', 4, '2019-07-03 16:05:45.377 ', '2019-07-03 16:05:45.377 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铜皮', 1, '2019-07-03 16:05:45.833 ', '2019-07-03 16:05:45.833 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废铜烂铁', 1, '2019-07-03 16:05:45.972 ', '2019-07-03 16:05:45.972 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('儿童尿不湿', 8, '2019-07-03 16:05:46.357 ', '2019-07-03 16:05:46.357 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('儿童电动玩具', 1, '2019-07-03 16:05:46.492 ', '2019-07-03 16:05:46.492 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木桶', 1, '2019-07-03 16:05:46.804 ', '2019-07-03 16:05:46.804 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('筒骨', 8, '2019-07-03 16:05:47.022 ', '2019-07-03 16:05:47.022 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('针筒', 2, '2019-07-03 16:05:47.160 ', '2019-07-05 01:37:20.140 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('骨头', 8, '2019-07-03 16:05:47.652 ', '2019-07-03 16:05:47.652 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('透明胶', 8, '2019-07-03 16:05:47.822 ', '2019-07-05 01:37:17.538 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('透明胶带', 8, '2019-07-03 16:05:47.952 ', '2019-07-03 16:05:47.952 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('一次性透明盒子', 8, '2019-07-03 16:05:48.109 ', '2019-07-03 16:05:48.109 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('地图', 1, '2019-07-03 16:05:48.416 ', '2019-07-03 16:05:48.416 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('图画', 8, '2019-07-03 16:05:48.681 ', '2019-07-03 16:05:48.681 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('涂料', 2, '2019-07-03 16:05:48.955 ', '2019-07-03 16:05:48.955 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('涂料桶', 2, '2019-07-03 16:05:49.227 ', '2019-07-03 16:05:49.227 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('屠龙刀', 1, '2019-07-03 16:05:49.435 ', '2019-07-03 16:05:49.435 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('土豆', 4, '2019-07-03 16:05:49.744 ', '2019-07-05 01:40:34.897 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('兔肉', 4, '2019-07-03 16:05:51.114 ', '2019-07-03 16:05:51.114 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('兔头', 4, '2019-07-03 16:05:51.262 ', '2019-07-03 16:05:51.262 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('饭团', 4, '2019-07-03 16:05:51.600 ', '2019-07-03 16:05:51.600 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('线团', 8, '2019-07-03 16:05:51.738 ', '2019-07-03 16:05:51.738 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纸团', 8, '2019-07-03 16:05:51.936 ', '2019-07-03 16:05:51.936 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('火腿', 4, '2019-07-03 16:05:52.220 ', '2019-07-03 16:05:52.220 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸡腿', 4, '2019-07-03 16:05:52.358 ', '2019-07-05 01:40:35.276 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('腿骨', 8, '2019-07-03 16:05:52.493 ', '2019-07-03 16:05:52.493 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('拖鞋', 8, '2019-07-03 16:05:53.075 ', '2019-07-05 01:37:17.728 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蛋挞托', 8, '2019-07-03 16:05:53.372 ', '2019-07-03 16:05:53.372 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('食物托盘', 1, '2019-07-03 16:05:53.535 ', '2019-07-03 16:05:53.535 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料托盘', 1, '2019-07-03 16:05:53.672 ', '2019-07-03 16:05:53.672 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('脱水机', 1, '2019-07-03 16:05:53.846 ', '2019-07-03 16:05:53.846 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('脱氧剂', 8, '2019-07-03 16:05:53.963 ', '2019-07-05 01:37:17.341 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('食品用脱氧剂', 8, '2019-07-03 16:05:54.103 ', '2019-07-03 16:05:54.103 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牛蛙', 4, '2019-07-03 16:05:54.749 ', '2019-07-05 01:40:35.364 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牛蛙骨头', 4, '2019-07-03 16:05:54.878 ', '2019-07-03 16:05:54.878 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('布娃娃', 1, '2019-07-03 16:05:55.086 ', '2019-07-05 01:37:19.559 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('棉袜', 1, '2019-07-03 16:05:55.606 ', '2019-07-03 16:05:55.606 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('丝袜', 8, '2019-07-03 16:05:55.742 ', '2019-07-05 01:37:17.635 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('外套', 1, '2019-07-03 16:05:56.037 ', '2019-07-03 16:05:56.037 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水笔外壳', 8, '2019-07-03 16:05:56.172 ', '2019-07-03 16:05:56.172 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('豌豆壳', 4, '2019-07-03 16:05:56.318 ', '2019-07-03 16:05:56.318 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('豌豆殼', 4, '2019-07-03 16:05:56.449 ', '2019-07-03 16:05:56.449 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玩具', 1, '2019-07-03 16:05:56.732 ', '2019-07-03 16:05:56.732 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('药丸', 2, '2019-07-03 16:05:56.989 ', '2019-07-05 01:37:20.268 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蟑螂丸', 2, '2019-07-03 16:05:57.123 ', '2019-07-03 16:05:57.123 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('擦完嘴的纸', 8, '2019-07-03 16:05:57.334 ', '2019-07-03 16:05:57.334 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('碗', 8, '2019-07-03 16:05:57.620 ', '2019-07-03 16:05:57.620 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('茶碗', 8, '2019-07-03 16:05:57.772 ', '2019-07-03 16:05:57.772 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('万能胶水', 8, '2019-07-03 16:05:58.190 ', '2019-07-03 16:05:58.190 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('网线', 1, '2019-07-03 16:05:58.693 ', '2019-07-05 01:37:19.593 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鱼网', 8, '2019-07-03 16:05:58.827 ', '2019-07-03 16:05:58.827 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('望远镜', 1, '2019-07-03 16:05:59.075 ', '2019-07-05 01:37:19.605 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('夏威夷果', 8, '2019-07-03 16:05:59.392 ', '2019-07-03 16:05:59.392 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('夏威夷果壳', 8, '2019-07-03 16:05:59.545 ', '2019-07-05 01:37:17.654 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('夏威夷果的壳', 8, '2019-07-03 16:07:07.167 ', '2019-07-03 16:07:07.167 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('围巾', 1, '2019-07-03 16:07:07.775 ', '2019-07-05 01:37:19.758 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('华为P20', 1, '2019-07-03 16:07:08.066 ', '2019-07-03 16:07:08.066 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('维生素', 2, '2019-07-03 16:07:08.291 ', '2019-07-03 16:07:08.291 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('人造纤维', 8, '2019-07-03 16:07:08.421 ', '2019-07-03 16:07:08.421 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('芦苇叶', 8, '2019-07-03 16:07:08.581 ', '2019-07-05 01:37:18.740 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('枯萎的花', 4, '2019-07-03 16:07:08.750 ', '2019-07-03 16:07:08.750 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('枯萎的鲜花', 4, '2019-07-03 16:07:08.884 ', '2019-07-03 16:07:08.884 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牛尾', 4, '2019-07-03 16:07:09.244 ', '2019-07-03 16:07:09.244 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('燕尾夹', 1, '2019-07-03 16:07:09.383 ', '2019-07-03 16:07:09.383 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('长尾夹', 1, '2019-07-03 16:07:09.503 ', '2019-07-03 16:07:09.503 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('未使用的餐巾纸', 8, '2019-07-03 16:07:09.727 ', '2019-07-03 16:07:09.727 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('调味袋', 8, '2019-07-03 16:07:09.951 ', '2019-07-03 16:07:09.951 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('调味料', 4, '2019-07-03 16:07:10.099 ', '2019-07-03 16:07:10.099 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('自慰棒', 1, '2019-07-03 16:07:10.622 ', '2019-07-03 16:07:10.622 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('自慰器', 1, '2019-07-03 16:07:10.768 ', '2019-07-03 16:07:10.768 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卫衣', 1, '2019-07-03 16:07:10.933 ', '2019-07-03 16:07:10.933 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卫生巾', 8, '2019-07-03 16:07:11.197 ', '2019-07-05 01:37:17.201 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('保温杯', 1, '2019-07-03 16:07:11.428 ', '2019-07-05 01:37:19.274 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('保温棉', 8, '2019-07-03 16:07:11.555 ', '2019-07-03 16:07:11.555 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('保温瓶', 1, '2019-07-03 16:07:11.673 ', '2019-07-05 01:37:19.059 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蚊香', 8, '2019-07-03 16:07:11.839 ', '2019-07-05 01:37:17.534 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蚊帐', 1, '2019-07-03 16:07:11.979 ', '2019-07-05 01:37:20.053 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蚊子', 4, '2019-07-03 16:07:12.098 ', '2019-07-05 01:40:35.248 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('文胸', 8, '2019-07-03 16:07:12.282 ', '2019-07-05 01:37:17.915 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('文竹', 4, '2019-07-03 16:07:12.459 ', '2019-07-03 16:07:12.459 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('公文包', 1, '2019-07-03 16:07:12.588 ', '2019-07-05 01:37:19.208 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蜗牛壳', 8, '2019-07-03 16:07:13.217 ', '2019-07-03 16:07:13.217 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('燕窝', 4, '2019-07-03 16:07:13.447 ', '2019-07-03 16:07:13.447 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('钨丝', 1, '2019-07-03 16:07:13.943 ', '2019-07-03 16:07:13.943 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('钨丝灯泡', 2, '2019-07-03 16:07:14.076 ', '2019-07-03 16:07:14.076 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('污水袋', 8, '2019-07-03 16:07:14.319 ', '2019-07-03 16:07:14.319 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('油污布', 8, '2019-07-03 16:07:14.451 ', '2019-07-03 16:07:14.451 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('无纺布', 8, '2019-07-03 16:07:14.693 ', '2019-07-13 16:30:02.478 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('无纺布袋', 1, '2019-07-03 16:07:14.831 ', '2019-07-05 01:37:19.757 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('午饭', 4, '2019-07-03 16:07:15.643 ', '2019-07-03 16:07:15.643 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('午餐肉', 4, '2019-07-03 16:07:15.771 ', '2019-07-05 01:37:16.593 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('午餐肉罐', 1, '2019-07-03 16:07:15.913 ', '2019-07-03 16:07:15.913 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('西瓜', 4, '2019-07-03 16:07:16.994 ', '2019-07-03 16:07:16.994 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('西药', 2, '2019-07-03 16:07:17.128 ', '2019-07-05 01:37:20.210 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('西柚', 4, '2019-07-03 16:07:17.264 ', '2019-07-03 16:07:17.264 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('吸尘器', 1, '2019-07-03 16:07:17.777 ', '2019-07-03 16:07:17.777 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('稀饭', 4, '2019-07-03 16:07:18.438 ', '2019-07-03 16:07:18.438 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('草席', 8, '2019-07-03 16:07:19.336 ', '2019-07-05 01:37:17.710 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('洗发精', 8, '2019-07-03 16:07:19.695 ', '2019-07-03 16:07:19.695 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('洗发水', 8, '2019-07-03 16:07:19.838 ', '2019-07-03 16:07:19.838 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('游戏机', 1, '2019-07-03 16:07:20.345 ', '2019-07-05 01:37:19.868 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('虾', 4, '2019-07-03 16:07:20.762 ', '2019-07-05 01:40:34.909 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('虾壳', 4, '2019-07-03 16:07:20.931 ', '2019-07-05 01:40:35.051 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('吃剩下的葡萄杆', 4, '2019-07-03 16:07:21.415 ', '2019-07-03 16:07:21.415 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('仙人掌', 4, '2019-07-03 16:07:21.842 ', '2019-07-05 01:37:16.879 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('海鲜', 4, '2019-07-03 16:07:22.240 ', '2019-07-03 16:07:22.240 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鲜花', 4, '2019-07-03 16:07:22.370 ', '2019-07-05 01:40:35.011 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('保鲜袋', 8, '2019-07-03 16:07:22.581 ', '2019-07-05 01:37:17.179 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('化纤衣物', 1, '2019-07-03 16:07:22.767 ', '2019-07-03 16:07:22.767 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('咸菜', 4, '2019-07-03 16:07:22.956 ', '2019-07-05 01:40:35.450 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('咸鱼', 4, '2019-07-03 16:07:23.078 ', '2019-07-05 01:37:16.915 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('咸鸭蛋壳', 4, '2019-07-03 16:07:23.265 ', '2019-07-05 01:40:35.249 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('显卡', 1, '2019-07-03 16:07:23.797 ', '2019-07-05 01:37:19.413 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('保险套', 8, '2019-07-03 16:07:23.968 ', '2019-07-03 16:07:23.968 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('保险箱', 1, '2019-07-03 16:07:24.132 ', '2019-07-03 16:07:24.132 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('线', 8, '2019-07-03 16:07:24.808 ', '2019-07-05 01:37:17.672 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电线', 1, '2019-07-03 16:07:25.073 ', '2019-07-05 01:37:19.051 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('相机', 1, '2019-07-03 16:07:25.406 ', '2019-07-03 16:07:25.406 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('茴香', 4, '2019-07-03 16:07:25.671 ', '2019-07-05 01:37:16.587 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('冰箱', 1, '2019-07-03 16:07:25.962 ', '2019-07-03 16:07:25.962 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('机箱', 1, '2019-07-03 16:07:26.082 ', '2019-07-05 01:37:19.687 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('墨襄', 8, '2019-07-03 16:07:26.248 ', '2019-07-03 16:07:26.248 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('音响', 1, '2019-07-03 16:07:26.707 ', '2019-07-03 16:07:26.707 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电脑小音响', 1, '2019-07-03 16:07:26.851 ', '2019-07-03 16:07:26.851 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('橡胶', 8, '2019-07-03 16:07:27.158 ', '2019-07-05 01:37:17.420 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('橡皮', 8, '2019-07-03 16:07:27.274 ', '2019-07-05 01:37:17.477 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废橡胶', 8, '2019-07-03 16:07:27.399 ', '2019-07-03 16:07:27.399 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('象牙', 8, '2019-07-03 16:07:27.663 ', '2019-07-03 16:07:27.663 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('小刀', 1, '2019-07-03 16:07:28.661 ', '2019-07-03 16:07:28.661 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('小骨', 4, '2019-07-03 16:07:28.938 ', '2019-07-03 16:07:28.938 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('羊蝎子', 8, '2019-07-03 16:07:29.498 ', '2019-07-05 01:37:17.890 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('羊蝎子骨头', 8, '2019-07-03 16:07:29.702 ', '2019-07-03 16:07:29.702 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鞋', 1, '2019-07-03 16:07:29.869 ', '2019-07-03 16:07:29.869 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('布鞋', 1, '2019-07-03 16:07:30.006 ', '2019-07-05 01:37:19.444 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('写字纸', 1, '2019-07-03 16:07:30.665 ', '2019-07-03 16:07:30.665 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('机械表', 1, '2019-07-03 16:07:30.841 ', '2019-07-03 16:07:30.841 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卸妆巾', 8, '2019-07-03 16:07:31.029 ', '2019-07-03 16:07:31.029 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卸妆棉', 8, '2019-07-03 16:07:31.160 ', '2019-07-05 01:37:18.185 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卸妆油', 8, '2019-07-03 16:07:31.296 ', '2019-07-03 16:07:31.296 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蟹', 4, '2019-07-03 16:07:31.477 ', '2019-07-03 16:07:31.477 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('螃蟹', 4, '2019-07-03 16:07:31.610 ', '2019-07-03 16:07:31.610 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('青蟹', 4, '2019-07-03 16:07:31.750 ', '2019-07-03 16:07:31.750 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('笔屑', 8, '2019-07-03 16:07:32.423 ', '2019-07-03 16:07:32.423 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木屑', 8, '2019-07-03 16:07:32.556 ', '2019-07-05 01:37:17.532 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('皮屑', 8, '2019-07-03 16:07:32.689 ', '2019-07-03 16:07:32.689 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('笔芯', 8, '2019-07-03 16:07:33.082 ', '2019-07-03 16:07:33.082 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玉米心', 4, '2019-07-03 16:07:33.492 ', '2019-07-03 16:07:33.492 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('信封带', 1, '2019-07-03 16:07:33.816 ', '2019-07-03 16:07:33.816 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('星巴克纸杯', 8, '2019-07-03 16:07:34.040 ', '2019-07-03 16:07:34.040 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('U型回形针', 8, '2019-07-03 16:07:34.526 ', '2019-07-03 16:07:34.526 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('隐形眼镜', 8, '2019-07-03 16:07:34.837 ', '2019-07-05 01:37:17.879 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('银行卡', 1, '2019-07-03 16:07:35.170 ', '2019-07-05 01:37:19.013 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('杏仁壳', 4, '2019-07-03 16:07:35.507 ', '2019-07-03 16:07:35.507 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水性笔', 8, '2019-07-03 16:07:35.685 ', '2019-07-03 16:07:35.685 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水性漆', 2, '2019-07-03 16:07:35.801 ', '2019-07-03 16:07:35.801 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸡胸', 4, '2019-07-03 16:07:36.082 ', '2019-07-03 16:07:36.082 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('胸罩', 8, '2019-07-03 16:07:36.210 ', '2019-07-05 01:37:18.031 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('修正带', 8, '2019-07-03 16:07:37.100 ', '2019-07-05 01:37:17.504 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('小修正带', 8, '2019-07-03 16:07:37.233 ', '2019-07-03 16:07:37.233 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('不锈钢刀', 1, '2019-07-03 16:07:37.818 ', '2019-07-03 16:07:37.818 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('不锈钢杯子', 1, '2019-07-03 16:07:37.945 ', '2019-07-05 01:37:19.370 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('绣花针', 8, '2019-07-03 16:07:38.211 ', '2019-07-05 01:37:17.639 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('胡须刀', 1, '2019-07-03 16:07:38.722 ', '2019-07-03 16:07:38.722 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧棉絮', 1, '2019-07-03 16:07:39.544 ', '2019-07-03 16:07:39.544 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('宣纸', 8, '2019-07-03 16:07:39.933 ', '2019-07-05 01:37:18.093 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('宣传单', 1, '2019-07-03 16:07:40.214 ', '2019-07-05 01:37:18.886 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('皮靴', 1, '2019-07-03 16:07:40.783 ', '2019-07-03 16:07:40.783 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('雨靴', 1, '2019-07-03 16:07:40.929 ', '2019-07-03 16:07:40.929 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('化学试剂包装玻璃瓶', 2, '2019-07-03 16:07:41.298 ', '2019-07-03 16:07:41.298 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('雪糕棒', 8, '2019-07-03 16:07:41.741 ', '2019-07-05 01:37:17.962 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('雪糕纸', 8, '2019-07-03 16:07:41.905 ', '2019-07-03 16:07:41.905 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸭血', 4, '2019-07-03 16:07:42.073 ', '2019-07-03 16:07:42.073 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('血压计', 1, '2019-07-03 16:07:42.367 ', '2019-07-03 16:07:42.367 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('压力罐', 1, '2019-07-03 16:07:43.148 ', '2019-07-03 16:07:43.148 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('压力锅', 1, '2019-07-03 16:07:43.306 ', '2019-07-03 16:07:43.306 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸭', 4, '2019-07-03 16:07:43.560 ', '2019-07-03 16:07:43.560 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸭骨', 4, '2019-07-03 16:07:43.840 ', '2019-07-03 16:07:43.840 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('绿豆芽', 4, '2019-07-03 16:07:44.108 ', '2019-07-03 16:07:44.108 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牙', 8, '2019-07-03 16:07:44.297 ', '2019-07-03 16:07:44.297 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('雅漾喷雾', 8, '2019-07-03 16:07:44.644 ', '2019-07-03 16:07:44.644 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('亚克力', 1, '2019-07-03 16:07:44.860 ', '2019-07-03 16:07:44.860 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('亚克力板', 1, '2019-07-03 16:07:45.046 ', '2019-07-05 01:37:19.598 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('亚克力胶水', 8, '2019-07-03 16:07:45.184 ', '2019-07-03 16:07:45.184 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('香烟', 8, '2019-07-03 16:07:45.540 ', '2019-07-05 01:37:17.400 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('盐', 4, '2019-07-03 16:07:45.928 ', '2019-07-05 01:40:34.966 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('污染严重的纸', 8, '2019-07-03 16:07:46.114 ', '2019-07-03 16:07:46.114 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('污染严重的纸盒', 8, '2019-07-03 16:07:46.235 ', '2019-07-03 16:07:46.235 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('污染严重的纸张', 8, '2019-07-03 16:07:46.386 ', '2019-07-03 16:07:46.386 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('颜料', 8, '2019-07-03 16:07:46.793 ', '2019-07-05 01:37:18.646 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('颜料板', 8, '2019-07-03 16:07:46.904 ', '2019-07-03 16:07:46.904 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('颜料笔', 8, '2019-07-03 16:07:47.037 ', '2019-07-03 16:07:47.037 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('过期的燕麦片', 4, '2019-07-03 16:07:47.717 ', '2019-07-03 16:07:47.717 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('验孕棒', 8, '2019-07-03 16:07:48.248 ', '2019-07-05 01:37:17.600 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('羊骨', 8, '2019-07-03 16:07:48.882 ', '2019-07-05 01:37:18.159 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('羊毛', 1, '2019-07-03 16:07:49.033 ', '2019-07-03 16:07:49.033 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('洋装', 1, '2019-07-03 16:07:49.369 ', '2019-07-03 16:07:49.369 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('海洋球', 1, '2019-07-03 16:07:49.512 ', '2019-07-03 16:07:49.512 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('遮阳帽', 1, '2019-07-03 16:07:49.698 ', '2019-07-03 16:07:49.698 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('除氧剂', 8, '2019-07-03 16:07:49.918 ', '2019-07-03 16:07:49.918 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('环氧树脂', 8, '2019-07-03 16:07:50.042 ', '2019-07-03 16:07:50.042 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('养生壶', 1, '2019-07-03 16:07:50.329 ', '2019-07-03 16:07:50.329 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('家养绿植', 4, '2019-07-03 16:07:50.639 ', '2019-07-03 16:07:50.639 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('腰带', 1, '2019-07-03 16:07:50.959 ', '2019-07-05 01:37:19.487 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('腰果', 4, '2019-07-03 16:07:51.089 ', '2019-07-05 01:37:16.652 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('高裤腰带', 8, '2019-07-03 16:07:51.219 ', '2019-07-03 16:07:51.219 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('咬过的口香糖', 8, '2019-07-03 16:07:51.747 ', '2019-07-03 16:07:51.747 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('草药', 4, '2019-07-03 16:07:51.946 ', '2019-07-03 16:07:51.946 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废药', 2, '2019-07-03 16:07:52.087 ', '2019-07-03 16:07:52.087 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('青椰', 8, '2019-07-03 16:07:52.536 ', '2019-07-03 16:07:52.536 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('椰壳', 8, '2019-07-03 16:07:52.694 ', '2019-07-03 16:07:52.694 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('椰子', 8, '2019-07-03 16:07:52.837 ', '2019-07-03 16:07:52.837 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('宣传页', 1, '2019-07-03 16:07:53.430 ', '2019-07-03 16:07:53.430 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('广告单页', 1, '2019-07-03 16:07:53.565 ', '2019-07-03 16:07:53.565 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('作业本', 1, '2019-07-03 16:07:53.770 ', '2019-07-05 01:37:19.187 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('叶', 4, '2019-07-03 16:07:54.225 ', '2019-07-03 16:07:54.225 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('菜叶', 4, '2019-07-03 16:07:54.486 ', '2019-07-05 01:40:34.883 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('隔夜饭', 4, '2019-07-03 16:07:54.911 ', '2019-07-03 16:07:54.911 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('乳液罐', 1, '2019-07-03 16:07:55.089 ', '2019-07-05 01:37:19.323 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('乳液瓶', 1, '2019-07-03 16:07:55.219 ', '2019-07-05 01:37:19.321 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('医用冰袋', 8, '2019-07-03 16:07:55.772 ', '2019-07-03 16:07:55.772 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('大衣', 1, '2019-07-03 16:07:56.557 ', '2019-07-05 01:37:19.855 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('移动电源', 1, '2019-07-03 16:07:57.025 ', '2019-07-05 01:37:19.872 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('移动硬盘', 1, '2019-07-03 16:07:57.147 ', '2019-07-05 01:37:19.289 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('行车记录仪', 1, '2019-07-03 16:07:57.309 ', '2019-07-03 16:07:57.309 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('易拉宝', 1, '2019-07-03 16:07:58.757 ', '2019-07-03 16:07:58.757 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('易拉罐', 1, '2019-07-03 16:07:58.881 ', '2019-07-05 01:37:18.923 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('音箱', 1, '2019-07-03 16:08:00.311 ', '2019-07-03 16:08:00.311 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧音箱', 1, '2019-07-03 16:08:00.628 ', '2019-07-03 16:08:00.628 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水银', 2, '2019-07-03 16:08:01.079 ', '2019-07-03 16:08:01.079 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('收银条', 1, '2019-07-03 16:08:01.413 ', '2019-07-13 16:38:01.421 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('隐形眼镜片', 8, '2019-07-03 16:08:01.795 ', '2019-07-03 16:08:01.795 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('过期隐形眼镜', 8, '2019-07-03 16:08:01.913 ', '2019-07-03 16:08:01.913 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('印泥', 8, '2019-07-03 16:08:02.093 ', '2019-07-05 01:37:18.056 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('打印机', 1, '2019-07-03 16:08:02.218 ', '2019-07-05 01:37:18.870 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('英语书', 1, '2019-07-03 16:08:02.409 ', '2019-07-03 16:08:02.409 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('樱花', 4, '2019-07-03 16:08:02.749 ', '2019-07-03 16:08:02.749 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('樱桃', 4, '2019-07-03 16:08:02.868 ', '2019-07-03 16:08:02.868 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('樱桃核', 4, '2019-07-03 16:08:03.018 ', '2019-07-05 01:40:35.342 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('婴儿尿不湿', 8, '2019-07-03 16:08:03.342 ', '2019-07-03 16:08:03.342 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('婴儿纸尿裤', 8, '2019-07-03 16:08:03.458 ', '2019-07-03 16:08:03.458 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('萤石', 8, '2019-07-03 16:08:03.803 ', '2019-07-03 16:08:03.803 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('荧光棒', 8, '2019-07-03 16:08:04.036 ', '2019-07-05 01:37:17.926 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('荧光笔', 8, '2019-07-03 16:08:04.167 ', '2019-07-05 01:37:17.925 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('眼影', 8, '2019-07-03 16:08:04.623 ', '2019-07-05 01:37:17.979 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电影票', 1, '2019-07-03 16:08:04.762 ', '2019-07-13 16:37:22.435 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('影印纸', 1, '2019-07-03 16:08:04.890 ', '2019-07-03 16:08:04.890 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('硬盘', 1, '2019-07-03 16:08:05.112 ', '2019-07-03 16:08:05.112 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('硬板纸', 1, '2019-07-03 16:08:05.241 ', '2019-07-05 01:37:19.639 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('硬贝壳', 8, '2019-07-03 16:08:05.397 ', '2019-07-03 16:08:05.397 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('游泳裤', 1, '2019-07-03 16:08:06.080 ', '2019-07-03 16:08:06.080 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('信用卡', 1, '2019-07-03 16:08:06.458 ', '2019-07-05 01:37:19.087 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('包装用纸', 1, '2019-07-03 16:08:06.598 ', '2019-07-03 16:08:06.598 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('厕所用纸', 8, '2019-07-03 16:08:06.717 ', '2019-07-03 16:08:06.717 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('优盘', 1, '2019-07-03 16:08:06.982 ', '2019-07-03 16:08:06.982 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('无线路由器', 1, '2019-07-03 16:08:07.290 ', '2019-07-03 16:08:07.290 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('黄油', 4, '2019-07-03 16:08:07.605 ', '2019-07-05 01:40:35.267 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('有机玻璃', 1, '2019-07-03 16:08:08.004 ', '2019-07-05 01:37:19.302 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('婴幼儿尿布', 8, '2019-07-03 16:08:08.473 ', '2019-07-03 16:08:08.473 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧衣服属于', 1, '2019-07-03 16:08:08.913 ', '2019-07-03 16:08:08.913 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('厨余果皮', 4, '2019-07-03 16:08:09.458 ', '2019-07-03 16:08:09.458 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('厨余垃圾', 4, '2019-07-03 16:08:09.600 ', '2019-07-03 16:08:09.600 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鱼', 4, '2019-07-03 16:08:09.922 ', '2019-07-05 01:37:16.821 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('黄鱼', 4, '2019-07-03 16:08:10.163 ', '2019-07-03 16:08:10.163 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('雨鞋', 1, '2019-07-03 16:08:10.567 ', '2019-07-05 01:37:19.238 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('语文书', 1, '2019-07-03 16:08:11.019 ', '2019-07-03 16:08:11.019 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('羽毛', 8, '2019-07-03 16:08:11.197 ', '2019-07-03 16:08:11.197 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('羽毛球', 8, '2019-07-03 16:08:11.330 ', '2019-07-05 01:37:17.761 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玉', 8, '2019-07-03 16:08:11.504 ', '2019-07-03 16:08:11.504 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玉米', 4, '2019-07-03 16:08:11.637 ', '2019-07-03 16:08:11.637 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玉镯', 1, '2019-07-03 16:08:11.777 ', '2019-07-03 16:08:11.777 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('芋艿', 4, '2019-07-03 16:08:12.014 ', '2019-07-05 01:37:16.998 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('芋头', 4, '2019-07-03 16:08:12.145 ', '2019-07-05 01:37:16.861 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('浴巾', 8, '2019-07-03 16:08:12.887 ', '2019-07-05 01:37:18.729 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('金属元件', 1, '2019-07-03 16:08:13.559 ', '2019-07-03 16:08:13.559 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('原味鸡', 4, '2019-07-03 16:08:13.822 ', '2019-07-03 16:08:13.822 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('原珠笔', 8, '2019-07-03 16:08:13.957 ', '2019-07-03 16:08:13.957 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('原子笔', 8, '2019-07-03 16:08:14.090 ', '2019-07-03 16:08:14.090 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('芋圆', 4, '2019-07-03 16:08:14.445 ', '2019-07-05 01:37:16.841 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电源器', 1, '2019-07-03 16:08:14.652 ', '2019-07-03 16:08:14.652 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电源线', 1, '2019-07-03 16:08:14.796 ', '2019-07-03 16:08:14.796 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('月饼', 4, '2019-07-03 16:08:15.973 ', '2019-07-03 16:08:15.973 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('月饼盒', 1, '2019-07-03 16:08:16.113 ', '2019-07-05 01:37:19.285 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('运动服', 1, '2019-07-03 16:08:16.934 ', '2019-07-03 16:08:16.934 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('运动鞋', 1, '2019-07-03 16:08:17.086 ', '2019-07-05 01:37:19.511 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧运动鞋', 1, '2019-07-03 16:08:17.229 ', '2019-07-03 16:08:17.229 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牛杂', 4, '2019-07-03 16:08:18.168 ', '2019-07-03 16:08:18.168 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('杂草', 4, '2019-07-03 16:08:18.281 ', '2019-07-05 01:40:35.193 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('杂志', 1, '2019-07-03 16:08:18.425 ', '2019-07-05 01:37:19.024 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('盆栽树叶', 4, '2019-07-03 16:08:18.632 ', '2019-07-03 16:08:18.632 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('盆栽植物', 4, '2019-07-03 16:08:18.773 ', '2019-07-03 16:08:18.773 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('再生纸', 1, '2019-07-03 16:08:19.124 ', '2019-07-03 16:08:19.124 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('脏布', 8, '2019-07-03 16:08:19.559 ', '2019-07-03 16:08:19.559 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鱼内脏', 4, '2019-07-03 16:08:19.687 ', '2019-07-05 01:37:16.660 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('枣', 4, '2019-07-03 16:08:20.054 ', '2019-07-03 16:08:20.054 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('红枣', 4, '2019-07-03 16:08:20.179 ', '2019-07-05 01:40:34.977 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('枣核', 4, '2019-07-03 16:08:20.306 ', '2019-07-05 01:40:35.068 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('洗澡掉的头发', 8, '2019-07-03 16:08:20.690 ', '2019-07-03 16:08:20.690 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('人造玻璃', 1, '2019-07-03 16:08:20.991 ', '2019-07-03 16:08:20.991 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('人造奶油', 4, '2019-07-03 16:08:21.145 ', '2019-07-03 16:08:21.145 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('香皂', 8, '2019-07-03 16:08:21.489 ', '2019-07-05 01:37:18.771 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('碎小肥皂', 8, '2019-07-03 16:08:21.593 ', '2019-07-03 16:08:21.593 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('干燥剂', 8, '2019-07-03 16:08:21.780 ', '2019-07-05 01:37:17.339 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('包装干燥剂', 8, '2019-07-03 16:08:21.906 ', '2019-07-03 16:08:21.906 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('石灰干燥剂', 8, '2019-07-03 16:08:22.042 ', '2019-07-03 16:08:22.042 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('扎带', 8, '2019-07-03 16:08:22.657 ', '2019-07-03 16:08:22.657 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('粽子 包扎线', 8, '2019-07-03 16:08:22.802 ', '2019-07-03 16:08:22.802 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('菜渣', 4, '2019-07-03 16:08:58.282 ', '2019-07-03 16:08:58.282 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('茶渣', 4, '2019-07-03 16:09:09.563 ', '2019-07-05 01:40:34.894 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('豆渣', 4, '2019-07-03 16:09:09.711 ', '2019-07-03 16:09:09.711 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('大闸蟹', 4, '2019-07-03 16:09:10.073 ', '2019-07-05 01:40:35.340 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('大闸蟹壳', 4, '2019-07-03 16:09:10.213 ', '2019-07-05 01:40:35.341 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('炸鸡', 4, '2019-07-03 16:09:10.823 ', '2019-07-05 01:40:35.311 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('粘纸', 8, '2019-07-03 16:09:11.597 ', '2019-07-05 01:37:18.720 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('粘鼠板', 8, '2019-07-03 16:09:11.845 ', '2019-07-05 01:37:18.345 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('沾有墨水的纸', 8, '2019-07-03 16:09:12.021 ', '2019-07-03 16:09:12.021 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('沾了油污的报纸', 1, '2019-07-03 16:09:12.153 ', '2019-07-03 16:09:12.153 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('沾了菜油的餐巾纸', 1, '2019-07-03 16:09:12.284 ', '2019-07-03 16:09:12.284 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蘸酱', 4, '2019-07-03 16:09:12.809 ', '2019-07-03 16:09:12.809 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蘸酱盒', 8, '2019-07-03 16:09:12.944 ', '2019-07-03 16:09:12.944 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('火锅蘸酱', 4, '2019-07-03 16:09:13.056 ', '2019-07-03 16:09:13.056 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('图章', 8, '2019-07-03 16:09:13.803 ', '2019-07-03 16:09:13.803 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('章鱼', 4, '2019-07-03 16:09:13.929 ', '2019-07-05 01:37:16.846 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纸张', 1, '2019-07-03 16:09:14.195 ', '2019-07-03 16:09:14.195 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废纸张', 1, '2019-07-03 16:09:14.330 ', '2019-07-03 16:09:14.330 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纸张类', 1, '2019-07-03 16:09:14.471 ', '2019-07-03 16:09:14.471 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('擀面杖', 1, '2019-07-03 16:09:14.747 ', '2019-07-05 01:37:19.389 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('账单', 1, '2019-07-03 16:09:15.023 ', '2019-07-03 16:09:15.023 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('照片', 2, '2019-07-03 16:09:15.732 ', '2019-07-13 16:42:15.532 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧照片', 2, '2019-07-03 16:09:15.893 ', '2019-07-03 16:09:15.893 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('照片纸', 2, '2019-07-03 16:09:16.021 ', '2019-07-03 16:09:16.021 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('床罩', 1, '2019-07-03 16:09:16.191 ', '2019-07-03 16:09:16.191 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('奶罩', 8, '2019-07-03 16:09:16.332 ', '2019-07-03 16:09:16.332 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('折扇', 8, '2019-07-03 16:09:16.846 ', '2019-07-03 16:09:16.846 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蔗糖', 4, '2019-07-03 16:09:17.517 ', '2019-07-03 16:09:17.517 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('珍珠', 1, '2019-07-03 16:09:17.964 ', '2019-07-03 16:09:17.964 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('黑珍猪', 4, '2019-07-03 16:09:18.098 ', '2019-07-03 16:09:18.098 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('珍珠米', 4, '2019-07-03 16:09:18.214 ', '2019-07-03 16:09:18.214 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('真空袋', 8, '2019-07-03 16:09:18.942 ', '2019-07-03 16:09:18.942 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('砧板', 1, '2019-07-03 16:09:19.166 ', '2019-07-05 01:37:19.337 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木砧板', 1, '2019-07-03 16:09:19.276 ', '2019-07-03 16:09:19.276 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('针', 8, '2019-07-03 16:09:19.555 ', '2019-07-03 16:09:19.555 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('针管', 2, '2019-07-03 16:09:19.807 ', '2019-07-05 01:37:20.139 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('枕套', 1, '2019-07-03 16:09:20.254 ', '2019-07-05 01:37:19.976 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('震动棒', 1, '2019-07-03 16:09:20.538 ', '2019-07-03 16:09:20.538 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蒸汽眼罩', 8, '2019-07-03 16:09:20.825 ', '2019-07-05 01:37:18.158 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('修正带内芯', 8, '2019-07-03 16:09:21.373 ', '2019-07-03 16:09:21.373 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('证书', 1, '2019-07-03 16:09:21.709 ', '2019-07-03 16:09:21.709 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('芝麻', 4, '2019-07-03 16:09:21.890 ', '2019-07-05 01:40:35.010 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('树枝', 8, '2019-07-03 16:09:22.205 ', '2019-07-05 01:37:17.169 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蜘蛛', 4, '2019-07-03 16:09:22.496 ', '2019-07-03 16:09:22.496 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('树脂', 2, '2019-07-03 16:09:22.808 ', '2019-07-05 01:37:20.118 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('油脂', 8, '2019-07-03 16:09:22.921 ', '2019-07-05 01:37:17.640 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('饭汁', 4, '2019-07-03 16:09:23.093 ', '2019-07-03 16:09:23.093 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蟹汁', 4, '2019-07-03 16:09:23.226 ', '2019-07-03 16:09:23.226 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('织物', 8, '2019-07-03 16:09:23.488 ', '2019-07-05 01:37:17.301 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('直尺', 8, '2019-07-03 16:09:24.054 ', '2019-07-03 16:09:24.054 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废直式日光灯管', 2, '2019-07-03 16:09:24.181 ', '2019-07-03 16:09:24.181 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('绿植', 4, '2019-07-03 16:09:24.376 ', '2019-07-03 16:09:24.376 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('植物', 4, '2019-07-03 16:09:24.538 ', '2019-07-03 16:09:24.538 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废植物', 4, '2019-07-03 16:09:24.703 ', '2019-07-03 16:09:24.703 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('指甲', 8, '2019-07-03 16:09:25.346 ', '2019-07-03 16:09:25.346 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('脚指甲', 8, '2019-07-03 16:09:25.478 ', '2019-07-03 16:09:25.478 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('手指甲脚趾甲', 8, '2019-07-03 16:09:25.716 ', '2019-07-03 16:09:25.716 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纸', 1, '2019-07-03 16:09:25.995 ', '2019-07-05 01:37:18.939 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('瓷制品', 8, '2019-07-03 16:09:26.908 ', '2019-07-03 16:09:26.908 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铝制品', 1, '2019-07-03 16:09:27.041 ', '2019-07-05 01:37:19.129 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木制品', 1, '2019-07-03 16:09:27.179 ', '2019-07-03 16:09:27.179 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木质菜板', 1, '2019-07-03 16:09:27.693 ', '2019-07-03 16:09:27.693 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('三明治包装', 8, '2019-07-03 16:09:28.180 ', '2019-07-03 16:09:28.180 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('中药', 4, '2019-07-03 16:09:28.407 ', '2019-07-03 16:09:28.407 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('中草药', 4, '2019-07-03 16:09:28.525 ', '2019-07-05 01:37:16.710 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('钟', 8, '2019-07-03 16:09:28.921 ', '2019-07-03 16:09:28.921 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('粥', 4, '2019-07-03 16:09:29.919 ', '2019-07-05 01:40:34.917 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('圆珠笔', 8, '2019-07-03 16:09:30.572 ', '2019-07-05 01:37:18.601 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('猪', 4, '2019-07-03 16:09:30.935 ', '2019-07-03 16:09:30.935 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('毛竹', 8, '2019-07-03 16:09:31.347 ', '2019-07-03 16:09:31.347 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蜡烛', 8, '2019-07-03 16:09:31.543 ', '2019-07-13 16:32:44.689 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('生日蜡烛', 8, '2019-07-03 16:09:31.680 ', '2019-07-03 16:09:31.680 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('白煮蛋壳', 4, '2019-07-03 16:09:31.855 ', '2019-07-03 16:09:31.855 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水煮肉片', 4, '2019-07-03 16:09:31.987 ', '2019-07-03 16:09:31.987 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('煮花生壳', 4, '2019-07-03 16:09:32.104 ', '2019-07-03 16:09:32.104 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('主板', 1, '2019-07-03 16:09:32.403 ', '2019-07-05 01:37:19.220 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('主机板', 1, '2019-07-03 16:09:32.515 ', '2019-07-03 16:09:32.515 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电路主板', 1, '2019-07-03 16:09:32.653 ', '2019-07-03 16:09:32.653 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸡爪', 4, '2019-07-03 16:09:33.628 ', '2019-07-03 16:09:33.628 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('猪爪骨头', 4, '2019-07-03 16:09:33.940 ', '2019-07-03 16:09:33.940 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('西装', 1, '2019-07-03 16:09:35.055 ', '2019-07-03 16:09:35.055 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('彩妆', 8, '2019-07-03 16:09:35.230 ', '2019-07-05 01:37:18.224 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('化妆棉', 8, '2019-07-03 16:09:35.367 ', '2019-07-05 01:37:17.378 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('防撞塑料', 8, '2019-07-03 16:09:35.551 ', '2019-07-03 16:09:35.551 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑胶制资料夹', 1, '2019-07-03 16:09:37.412 ', '2019-07-03 16:09:37.412 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('紫菜', 4, '2019-07-03 16:09:37.780 ', '2019-07-03 16:09:37.780 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('紫砂茶具', 8, '2019-07-03 16:09:37.934 ', '2019-07-03 16:09:37.934 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('紫砂碎片', 8, '2019-07-03 16:09:38.051 ', '2019-07-03 16:09:38.051 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牛仔裤', 1, '2019-07-03 16:09:38.220 ', '2019-07-05 01:37:19.481 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('葡萄籽', 4, '2019-07-03 16:09:38.373 ', '2019-07-05 01:40:35.116 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('西瓜籽', 4, '2019-07-03 16:09:38.516 ', '2019-07-05 01:40:35.113 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('被子', 1, '2019-07-03 16:09:38.909 ', '2019-07-05 01:37:19.170 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('自动铅', 8, '2019-07-03 16:09:39.283 ', '2019-07-03 16:09:39.283 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('自暖包', 8, '2019-07-03 16:09:39.571 ', '2019-07-03 16:09:39.571 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('油渍的报纸', 8, '2019-07-03 16:09:39.729 ', '2019-07-03 16:09:39.729 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('有污渍的餐盒', 8, '2019-07-03 16:09:39.855 ', '2019-07-03 16:09:39.855 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('签字笔', 8, '2019-07-03 16:09:40.193 ', '2019-07-05 01:37:17.990 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('棕叶', 8, '2019-07-03 16:09:40.433 ', '2019-07-03 16:09:40.433 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('棕子皮', 8, '2019-07-03 16:09:40.577 ', '2019-07-03 16:09:40.577 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('棕子叶', 8, '2019-07-03 16:09:40.713 ', '2019-07-03 16:09:40.713 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('走油肉', 4, '2019-07-03 16:09:41.130 ', '2019-07-03 16:09:41.130 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('足球', 1, '2019-07-03 16:09:41.442 ', '2019-07-05 01:37:19.753 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电钻', 1, '2019-07-03 16:09:41.884 ', '2019-07-05 01:37:19.770 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('钻笔', 8, '2019-07-03 16:09:42.017 ', '2019-07-03 16:09:42.017 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('钻石', 1, '2019-07-03 16:09:42.139 ', '2019-07-05 01:37:19.596 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('香烟过滤嘴', 8, '2019-07-03 16:09:42.365 ', '2019-07-03 16:09:42.365 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('作文书', 1, '2019-07-03 16:09:43.136 ', '2019-07-03 16:09:43.136 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('竹坐垫', 8, '2019-07-03 16:09:43.431 ', '2019-07-03 16:09:43.431 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('led灯', 2, '2019-07-03 16:09:44.150 ', '2019-07-03 16:09:44.150 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('PET瓶', 1, '2019-07-03 16:09:44.306 ', '2019-07-03 16:09:44.306 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('LED灯泡', 2, '2019-07-03 16:09:44.445 ', '2019-07-03 16:09:44.445 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('kt板', 1, '2019-07-03 16:09:44.655 ', '2019-07-03 16:09:44.655 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('cpu', 1, '2019-07-03 16:09:44.876 ', '2019-07-03 16:09:44.876 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('ipad', 1, '2019-07-03 16:09:45.057 ', '2019-07-03 16:09:45.057 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('kindle', 1, '2019-07-03 16:09:45.192 ', '2019-07-03 16:09:45.192 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('PIZZA盒', 8, '2019-07-03 16:09:45.357 ', '2019-07-03 16:09:45.357 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('xbox', 1, '2019-07-03 16:09:45.542 ', '2019-07-03 16:09:45.542 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('iphone x', 1, '2019-07-03 16:09:45.693 ', '2019-07-03 16:09:45.693 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('IPHONE手机', 1, '2019-07-03 16:09:45.828 ', '2019-07-03 16:09:45.828 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('pp管', 1, '2019-07-03 16:09:46.008 ', '2019-07-03 16:09:46.008 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('A4纸', 1, '2019-07-03 16:09:46.183 ', '2019-07-03 16:09:46.183 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('cd', 1, '2019-07-03 16:09:46.393 ', '2019-07-03 16:09:46.393 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('CD机', 1, '2019-07-03 16:09:46.511 ', '2019-07-03 16:09:46.511 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('KINDLE壳', 8, '2019-07-03 16:09:46.885 ', '2019-07-03 16:09:46.885 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('zippo打火机', 8, '2019-07-03 16:09:47.126 ', '2019-07-03 16:09:47.126 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('x光片', 2, '2019-07-03 16:09:47.327 ', '2019-07-03 16:09:47.327 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('x光胶片', 2, '2019-07-03 16:09:47.457 ', '2019-07-03 16:09:47.457 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('PVC瓶', 1, '2019-07-03 16:09:47.681 ', '2019-07-03 16:09:47.681 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('剩菜剩饭', 4, '2019-07-05 01:37:15.891 ', '2019-07-05 01:40:34.879 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('食物残渣', 4, '2019-07-05 01:37:15.898 ', '2019-07-05 01:40:34.881 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('肉类', 4, '2019-07-05 01:37:15.901 ', '2019-07-05 01:40:34.884 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鱼虾', 4, '2019-07-05 01:37:15.902 ', '2019-07-05 01:40:34.885 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蛋壳', 4, '2019-07-05 01:37:15.903 ', '2019-07-05 01:40:34.886 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鱼骨头', 4, '2019-07-05 01:37:15.904 ', '2019-07-05 01:40:34.887 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('肉骨头', 4, '2019-07-05 01:37:15.905 ', '2019-07-05 01:40:34.888 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('果皮', 4, '2019-07-05 01:37:15.906 ', '2019-07-05 01:40:34.889 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('树叶', 4, '2019-07-05 01:37:15.909 ', '2019-07-05 01:40:34.891 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('瓜子壳', 4, '2019-07-05 01:37:15.910 ', '2019-07-05 01:40:34.891 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('花生壳', 4, '2019-07-05 01:37:15.910 ', '2019-07-05 01:40:34.893 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('藜麦', 4, '2019-07-05 01:37:15.927 ', '2019-07-05 01:40:34.899 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸡骨头', 4, '2019-07-05 01:37:15.936 ', '2019-07-05 01:40:34.900 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸭骨头', 4, '2019-07-05 01:37:15.937 ', '2019-07-05 01:40:34.901 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鹅骨头', 4, '2019-07-05 01:37:15.938 ', '2019-07-05 01:40:34.901 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('草莓叶', 4, '2019-07-05 01:37:15.943 ', '2019-07-05 01:40:34.912 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('米饭', 4, '2019-07-05 01:37:15.952 ', '2019-07-05 01:40:34.915 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('豌豆皮', 4, '2019-07-05 01:37:15.956 ', '2019-07-05 01:40:34.918 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('韩国泡菜', 4, '2019-07-05 01:37:15.960 ', '2019-07-05 01:40:34.928 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('普洱茶', 4, '2019-07-05 01:37:15.961 ', '2019-07-05 01:40:34.930 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('残枝落叶', 4, '2019-07-05 01:37:15.978 ', '2019-07-05 01:40:34.932 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('植物枝干', 4, '2019-07-05 01:37:15.981 ', '2019-07-05 01:40:34.934 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('杂菜', 4, '2019-07-05 01:37:15.982 ', '2019-07-05 01:40:34.935 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('动物尸体', 4, '2019-07-05 01:37:15.983 ', '2019-07-05 01:40:34.943 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牲畜粪便', 4, '2019-07-05 01:37:15.984 ', '2019-07-05 01:40:34.944 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('橘子皮', 4, '2019-07-05 01:37:15.985 ', '2019-07-05 01:40:34.945 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('香蕉皮', 4, '2019-07-05 01:37:15.986 ', '2019-07-05 01:40:34.946 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('苹果皮', 4, '2019-07-05 01:37:15.986 ', '2019-07-05 01:40:34.947 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('西瓜皮', 4, '2019-07-05 01:37:15.987 ', '2019-07-05 01:40:34.948 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('芒果皮', 4, '2019-07-05 01:37:15.988 ', '2019-07-05 01:40:34.949 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('山竹壳', 4, '2019-07-05 01:37:15.990 ', '2019-07-05 01:40:34.951 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('洋葱皮', 4, '2019-07-05 01:37:15.992 ', '2019-07-05 01:40:34.962 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('中药渣', 4, '2019-07-05 01:37:16.025 ', '2019-07-05 01:40:34.979 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('宠物饲料', 4, '2019-07-05 01:37:16.025 ', '2019-07-05 01:40:34.980 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('矿物猫砂', 4, '2019-07-05 01:37:16.026 ', '2019-07-05 01:40:34.982 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('食用油', 4, '2019-07-05 01:37:16.027 ', '2019-07-05 01:40:34.983 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('动物粪便', 4, '2019-07-05 01:37:16.043 ', '2019-07-05 01:40:34.985 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牛排', 4, '2019-07-05 01:37:16.046 ', '2019-07-05 01:40:34.994 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('喜糖', 4, '2019-07-05 01:37:16.047 ', '2019-07-05 01:40:34.996 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('咖啡残渣', 4, '2019-07-05 01:37:16.048 ', '2019-07-05 01:40:34.997 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('大白菜', 4, '2019-07-05 01:37:16.049 ', '2019-07-05 01:40:34.998 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('粽子馅', 4, '2019-07-05 01:37:16.050 ', '2019-07-05 01:40:34.999 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('宠物粪便', 4, '2019-07-05 01:37:16.052 ', '2019-07-05 01:40:35.002 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('猫屎', 4, '2019-07-05 01:37:16.052 ', '2019-07-05 01:40:35.003 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('咖啡渣', 4, '2019-07-05 01:37:16.055 ', '2019-07-05 01:40:35.012 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鲜花瓣', 4, '2019-07-05 01:37:16.056 ', '2019-07-05 01:40:35.014 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('豆腐猫砂', 4, '2019-07-05 01:37:16.058 ', '2019-07-05 01:40:35.016 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('冬枣', 4, '2019-07-05 01:37:16.059 ', '2019-07-05 01:40:35.017 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('大蒜叶', 4, '2019-07-05 01:37:16.060 ', '2019-07-05 01:40:35.018 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('杏核', 4, '2019-07-05 01:37:16.061 ', '2019-07-05 01:40:35.027 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纸质吸管', 4, '2019-07-05 01:37:16.084 ', '2019-07-05 01:40:35.029 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('茶叶渣', 4, '2019-07-05 01:37:16.087 ', '2019-07-05 01:40:35.031 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('小龙虾壳', 4, '2019-07-05 01:37:16.090 ', '2019-07-05 01:40:35.033 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('榴莲酥', 4, '2019-07-05 01:37:16.091 ', '2019-07-05 01:40:35.034 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('榴莲肉', 4, '2019-07-05 01:37:16.092 ', '2019-07-05 01:40:35.035 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('枇杷核', 4, '2019-07-05 01:37:16.093 ', '2019-07-05 01:40:35.043 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('百香果壳', 4, '2019-07-05 01:37:16.094 ', '2019-07-05 01:40:35.044 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('食品添加剂', 4, '2019-07-05 01:37:16.096 ', '2019-07-05 01:40:35.047 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('豆制品', 4, '2019-07-05 01:37:16.110 ', '2019-07-05 01:40:35.049 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('动物内脏', 4, '2019-07-05 01:37:16.111 ', '2019-07-05 01:40:35.050 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('脆枣', 4, '2019-07-05 01:37:16.113 ', '2019-07-05 01:40:35.053 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废弃食用油', 4, '2019-07-05 01:37:16.114 ', '2019-07-05 01:40:35.060 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废弃调味品', 4, '2019-07-05 01:37:16.115 ', '2019-07-05 01:40:35.061 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('糖果', 4, '2019-07-05 01:37:16.117 ', '2019-07-05 01:40:35.064 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水蜜桃肉', 4, '2019-07-05 01:37:16.121 ', '2019-07-05 01:40:35.069 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('火龙果', 4, '2019-07-05 01:37:16.122 ', '2019-07-05 01:40:35.069 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('火锅底料', 4, '2019-07-05 01:37:16.123 ', '2019-07-05 01:40:35.077 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('螺蛳肉', 4, '2019-07-05 01:37:16.124 ', '2019-07-05 01:40:35.078 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('排骨', 4, '2019-07-05 01:37:16.125 ', '2019-07-05 01:40:35.080 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蒜皮', 4, '2019-07-05 01:37:16.127 ', '2019-07-05 01:40:35.082 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('叉烧酥', 4, '2019-07-05 01:37:16.128 ', '2019-07-05 01:40:35.083 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('菠萝皮', 4, '2019-07-05 01:37:16.128 ', '2019-07-05 01:40:35.084 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('南瓜籽', 4, '2019-07-05 01:37:16.154 ', '2019-07-05 01:40:35.094 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('香瓜子', 4, '2019-07-05 01:37:16.155 ', '2019-07-05 01:40:35.096 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('青椒', 4, '2019-07-05 01:37:16.156 ', '2019-07-05 01:40:35.097 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蒜头', 4, '2019-07-05 01:37:16.157 ', '2019-07-05 01:40:35.098 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('毛豆壳', 4, '2019-07-05 01:37:16.158 ', '2019-07-05 01:40:35.100 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸡肉', 4, '2019-07-05 01:37:16.159 ', '2019-07-05 01:40:35.101 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸭掌', 4, '2019-07-05 01:37:16.160 ', '2019-07-05 01:40:35.102 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鱼肉', 4, '2019-07-05 01:37:16.161 ', '2019-07-05 01:40:35.110 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('荔枝皮', 4, '2019-07-05 01:37:16.175 ', '2019-07-05 01:40:35.114 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('方便面面条', 4, '2019-07-05 01:37:16.176 ', '2019-07-05 01:40:35.115 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('螺蛳壳', 4, '2019-07-05 01:37:16.179 ', '2019-07-05 01:40:35.117 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牛油果核', 4, '2019-07-05 01:37:16.180 ', '2019-07-05 01:40:35.118 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('老鼠', 4, '2019-07-05 01:37:16.181 ', '2019-07-05 01:40:35.126 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('包裹着猫屎的豆腐猫砂', 4, '2019-07-05 01:37:16.182 ', '2019-07-05 01:40:35.128 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('茭白', 4, '2019-07-05 01:37:16.184 ', '2019-07-05 01:40:35.130 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('茭白叶', 4, '2019-07-05 01:37:16.185 ', '2019-07-05 01:40:35.131 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('葡萄干', 4, '2019-07-05 01:37:16.186 ', '2019-07-05 01:40:35.132 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('火龙果皮', 4, '2019-07-05 01:37:16.188 ', '2019-07-05 01:40:35.134 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('椰肉', 4, '2019-07-05 01:37:16.189 ', '2019-07-05 01:40:35.135 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('苹果肉', 4, '2019-07-05 01:37:16.191 ', '2019-07-05 01:40:35.144 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('香瓜皮', 4, '2019-07-05 01:37:16.193 ', '2019-07-05 01:40:35.147 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('扁豆', 4, '2019-07-05 01:37:16.195 ', '2019-07-05 01:40:35.148 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玉米须', 4, '2019-07-05 01:37:16.195 ', '2019-07-05 01:40:35.149 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('兔子粪便', 4, '2019-07-05 01:37:16.212 ', '2019-07-05 01:40:35.151 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('螃蟹壳', 4, '2019-07-05 01:37:16.213 ', '2019-07-05 01:40:35.152 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('吸管纸质包装', 4, '2019-07-05 01:37:16.214 ', '2019-07-05 01:40:35.160 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('西餐糕点', 4, '2019-07-05 01:37:16.215 ', '2019-07-05 01:40:35.161 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸡脚爪', 4, '2019-07-05 01:37:16.216 ', '2019-07-05 01:40:35.162 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸭爪', 4, '2019-07-05 01:37:16.217 ', '2019-07-05 01:40:35.163 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('山楂', 4, '2019-07-05 01:37:16.219 ', '2019-07-05 01:40:35.164 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸭翅', 4, '2019-07-05 01:37:16.223 ', '2019-07-05 01:40:35.167 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('扇贝肉', 4, '2019-07-05 01:37:16.224 ', '2019-07-05 01:40:35.168 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('火锅渣', 4, '2019-07-05 01:37:16.226 ', '2019-07-05 01:40:35.178 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('布丁', 4, '2019-07-05 01:37:16.227 ', '2019-07-05 01:40:35.179 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('奶茶中的珍珠', 4, '2019-07-05 01:37:16.245 ', '2019-07-05 01:40:35.182 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('燕麦', 4, '2019-07-05 01:37:16.247 ', '2019-07-05 01:40:35.183 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('薯格', 4, '2019-07-05 01:37:16.251 ', '2019-07-05 01:40:35.194 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('甜品', 4, '2019-07-05 01:37:16.252 ', '2019-07-05 01:40:35.195 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水果', 4, '2019-07-05 01:37:16.255 ', '2019-07-05 01:40:35.198 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('枯树叶', 4, '2019-07-05 01:37:16.259 ', '2019-07-05 01:40:35.201 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蔬菜残余', 4, '2019-07-05 01:37:16.260 ', '2019-07-05 01:40:35.210 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('西兰花梗', 4, '2019-07-05 01:37:16.260 ', '2019-07-05 01:40:35.211 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('桃子', 4, '2019-07-05 01:37:16.279 ', '2019-07-05 01:40:35.215 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('压缩饼干', 4, '2019-07-05 01:37:16.281 ', '2019-07-05 01:40:35.218 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('花生衣', 4, '2019-07-05 01:37:16.284 ', '2019-07-05 01:40:35.231 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('结团猫砂', 4, '2019-07-05 01:37:16.287 ', '2019-07-05 01:40:35.235 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('红豆', 4, '2019-07-05 01:37:16.290 ', '2019-07-05 01:40:35.238 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('熟鸡蛋壳', 4, '2019-07-05 01:37:16.291 ', '2019-07-05 01:40:35.246 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蟑螂', 4, '2019-07-05 01:37:16.292 ', '2019-07-05 01:40:35.247 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('西瓜子', 4, '2019-07-05 01:37:16.311 ', '2019-07-05 01:40:35.251 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸡屎', 4, '2019-07-05 01:37:16.313 ', '2019-07-05 01:40:35.252 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('盒饭', 4, '2019-07-05 01:37:16.314 ', '2019-07-05 01:40:35.260 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('奶油', 4, '2019-07-05 01:37:16.315 ', '2019-07-05 01:40:35.261 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('豆芽', 4, '2019-07-05 01:37:16.316 ', '2019-07-05 01:40:35.262 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('杏仁饼', 4, '2019-07-05 01:37:16.317 ', '2019-07-05 01:40:35.264 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('猫屎咖啡', 4, '2019-07-05 01:37:16.318 ', '2019-07-05 01:40:35.265 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水果干', 4, '2019-07-05 01:37:16.321 ', '2019-07-05 01:40:35.268 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸭腿', 4, '2019-07-05 01:37:16.323 ', '2019-07-05 01:40:35.278 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('车厘子核', 4, '2019-07-05 01:37:16.325 ', '2019-07-05 01:40:35.279 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('平菇', 4, '2019-07-05 01:37:16.328 ', '2019-07-05 01:40:35.282 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('金针菇', 4, '2019-07-05 01:37:16.343 ', '2019-07-05 01:40:35.284 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('茨菇', 4, '2019-07-05 01:37:16.344 ', '2019-07-05 01:40:35.285 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('藕片', 4, '2019-07-05 01:37:16.347 ', '2019-07-05 01:40:35.293 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('葡萄梗', 4, '2019-07-05 01:37:16.347 ', '2019-07-05 01:40:35.295 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('咖啡豆', 4, '2019-07-05 01:37:16.349 ', '2019-07-05 01:40:35.297 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('丝瓜皮', 4, '2019-07-05 01:37:16.351 ', '2019-07-05 01:40:35.299 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('烂水果', 4, '2019-07-05 01:37:16.352 ', '2019-07-05 01:40:35.300 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸡皮', 4, '2019-07-05 01:37:16.353 ', '2019-07-05 01:40:35.301 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('海瓜子壳', 4, '2019-07-05 01:37:16.354 ', '2019-07-05 01:40:35.310 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('桂皮', 4, '2019-07-05 01:37:16.356 ', '2019-07-05 01:40:35.313 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸡蛋仔', 4, '2019-07-05 01:37:16.357 ', '2019-07-05 01:40:35.314 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('螺蛳', 4, '2019-07-05 01:37:16.359 ', '2019-07-05 01:40:35.316 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('猪蹄骨', 4, '2019-07-05 01:37:16.360 ', '2019-07-05 01:40:35.317 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('过期大米', 4, '2019-07-05 01:37:16.377 ', '2019-07-05 01:40:35.319 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('过期糖', 4, '2019-07-05 01:37:16.379 ', '2019-07-05 01:40:35.328 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('过期巧克力', 4, '2019-07-05 01:37:16.380 ', '2019-07-05 01:40:35.329 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('巧克力酱', 4, '2019-07-05 01:37:16.382 ', '2019-07-05 01:40:35.331 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('李子', 4, '2019-07-05 01:37:16.383 ', '2019-07-05 01:40:35.332 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸟粪', 4, '2019-07-05 01:37:16.384 ', '2019-07-05 01:40:35.333 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('栗子壳', 4, '2019-07-05 01:37:16.386 ', '2019-07-05 01:40:35.335 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('核桃肉', 4, '2019-07-05 01:37:16.387 ', '2019-07-05 01:40:35.336 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('李子核', 4, '2019-07-05 01:37:16.388 ', '2019-07-05 01:40:35.337 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('薯条', 4, '2019-07-05 01:37:16.392 ', '2019-07-05 01:40:35.339 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('柠檬皮', 4, '2019-07-05 01:37:16.409 ', '2019-07-05 01:40:35.349 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('柚子皮', 4, '2019-07-05 01:37:16.410 ', '2019-07-05 01:40:35.351 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蛋白', 4, '2019-07-05 01:37:16.413 ', '2019-07-05 01:40:35.354 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('干果仁', 4, '2019-07-05 01:37:16.414 ', '2019-07-05 01:40:35.355 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('橄榄核', 4, '2019-07-05 01:37:16.416 ', '2019-07-05 01:40:35.357 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('姜糖', 4, '2019-07-05 01:37:16.417 ', '2019-07-05 01:40:35.358 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('瓜子皮', 4, '2019-07-05 01:37:16.418 ', '2019-07-05 01:40:35.359 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玉米棒', 4, '2019-07-05 01:37:16.419 ', '2019-07-05 01:40:35.360 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('过期食品', 4, '2019-07-05 01:37:16.419 ', '2019-07-05 01:40:35.361 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('虾头', 4, '2019-07-05 01:37:16.421 ', '2019-07-05 01:40:35.363 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牛蛙骨', 4, '2019-07-05 01:37:16.424 ', '2019-07-05 01:40:35.365 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('杨梅核', 4, '2019-07-05 01:37:16.425 ', '2019-07-05 01:40:35.365 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('过期调味料', 4, '2019-07-05 01:37:16.427 ', '2019-07-05 01:40:35.367 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('孜然粉', 4, '2019-07-05 01:37:16.428 ', '2019-07-05 01:40:35.368 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蜂蜜', 4, '2019-07-05 01:37:16.442 ', '2019-07-05 01:40:35.377 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('红豆糕', 4, '2019-07-05 01:37:16.443 ', '2019-07-05 01:40:35.378 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('叉烧', 4, '2019-07-05 01:37:16.444 ', '2019-07-05 01:40:35.379 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('菠萝包', 4, '2019-07-05 01:37:16.445 ', '2019-07-05 01:40:35.381 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('干面条', 4, '2019-07-05 01:37:16.446 ', '2019-07-05 01:40:35.381 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('干脆面', 4, '2019-07-05 01:37:16.447 ', '2019-07-05 01:40:35.382 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('出前一丁面条', 4, '2019-07-05 01:37:16.448 ', '2019-07-05 01:40:35.383 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('多宝鱼骨头', 4, '2019-07-05 01:37:16.449 ', '2019-07-05 01:40:35.384 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('草本植物', 4, '2019-07-05 01:37:16.451 ', '2019-07-05 01:40:35.394 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('小核桃肉', 4, '2019-07-05 01:37:16.452 ', '2019-07-05 01:40:35.395 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('凋谢的鲜花', 4, '2019-07-05 01:37:16.452 ', '2019-07-05 01:40:35.396 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('咖啡豆渣', 4, '2019-07-05 01:37:16.453 ', '2019-07-05 01:40:35.398 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蚌肉', 4, '2019-07-05 01:37:16.454 ', '2019-07-05 01:40:35.399 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('盐水花生', 4, '2019-07-05 01:37:16.455 ', '2019-07-05 01:40:35.400 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('盐水花生壳', 4, '2019-07-05 01:37:16.456 ', '2019-07-05 01:40:35.401 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('豆浆渣', 4, '2019-07-05 01:37:16.457 ', '2019-07-05 01:40:35.401 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('红枣核', 4, '2019-07-05 01:37:16.458 ', '2019-07-05 01:40:35.409 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('枣子核', 4, '2019-07-05 01:37:16.459 ', '2019-07-05 01:40:35.411 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('面粉', 4, '2019-07-05 01:37:16.460 ', '2019-07-05 01:40:35.412 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('咖啡粉', 4, '2019-07-05 01:37:16.461 ', '2019-07-05 01:40:35.413 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('桔子皮', 4, '2019-07-05 01:37:16.462 ', '2019-07-05 01:40:35.414 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('橘子', 4, '2019-07-05 01:37:16.462 ', '2019-07-05 01:40:35.415 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牛油果皮', 4, '2019-07-05 01:37:16.476 ', '2019-07-05 01:40:35.416 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('油桃肉', 4, '2019-07-05 01:37:16.479 ', '2019-07-05 01:40:35.418 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水蜜桃', 4, '2019-07-05 01:37:16.480 ', '2019-07-05 01:40:35.426 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('樱桃干', 4, '2019-07-05 01:37:16.481 ', '2019-07-05 01:40:35.427 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('龙虾片', 4, '2019-07-05 01:37:16.481 ', '2019-07-05 01:40:35.429 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('土豆泥', 4, '2019-07-05 01:37:16.483 ', '2019-07-05 01:40:35.431 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废弃植物', 4, '2019-07-05 01:37:16.484 ', '2019-07-05 01:40:35.432 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玉米猫砂', 4, '2019-07-05 01:37:16.485 ', '2019-07-05 01:40:35.433 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('油烟机油脂', 4, '2019-07-05 01:37:16.486 ', '2019-07-05 01:40:35.434 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('油条', 4, '2019-07-05 01:37:16.487 ', '2019-07-05 01:40:35.435 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('紫薯皮', 4, '2019-07-05 01:37:16.488 ', '2019-07-05 01:40:35.443 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('燕麦片', 4, '2019-07-05 01:37:16.488 ', '2019-07-05 01:40:35.445 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('小米', 4, '2019-07-05 01:37:16.489 ', '2019-07-05 01:40:35.446 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('糯米', 4, '2019-07-05 01:37:16.491 ', '2019-07-05 01:40:35.447 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('白糖', 4, '2019-07-05 01:37:16.492 ', '2019-07-05 01:40:35.448 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('榨菜', 4, '2019-07-05 01:37:16.494 ', '2019-07-05 01:40:35.452 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('油桃核', 4, '2019-07-05 01:37:16.495 ', '2019-07-05 01:37:16.495 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('酸豆角', 4, '2019-07-05 01:37:16.510 ', '2019-07-05 01:37:16.510 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牛肉', 4, '2019-07-05 01:37:16.511 ', '2019-07-05 01:37:16.511 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸭肉', 4, '2019-07-05 01:37:16.513 ', '2019-07-05 01:37:16.513 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('话梅肉', 4, '2019-07-05 01:37:16.516 ', '2019-07-05 01:37:16.516 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鱼皮花生', 4, '2019-07-05 01:37:16.517 ', '2019-07-05 01:37:16.517 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('咸蛋黄', 4, '2019-07-05 01:37:16.518 ', '2019-07-05 01:37:16.518 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('冬瓜皮', 4, '2019-07-05 01:37:16.518 ', '2019-07-05 01:37:16.518 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('咖啡伴侣粉', 4, '2019-07-05 01:37:16.521 ', '2019-07-05 01:37:16.521 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('苦瓜', 4, '2019-07-05 01:37:16.523 ', '2019-07-05 01:37:16.523 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('小龙虾头', 4, '2019-07-05 01:37:16.524 ', '2019-07-05 01:37:16.524 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('石榴', 4, '2019-07-05 01:37:16.525 ', '2019-07-05 01:37:16.525 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('石榴籽', 4, '2019-07-05 01:37:16.526 ', '2019-07-05 01:37:16.526 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('叫化鸡', 4, '2019-07-05 01:37:16.528 ', '2019-07-05 01:37:16.528 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('干辣椒', 4, '2019-07-05 01:37:16.542 ', '2019-07-05 01:37:16.542 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('山药', 4, '2019-07-05 01:37:16.544 ', '2019-07-05 01:37:16.544 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('土豆皮', 4, '2019-07-05 01:37:16.545 ', '2019-07-05 01:37:16.545 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('炒花生米', 4, '2019-07-05 01:37:16.546 ', '2019-07-05 01:37:16.546 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蟹肉', 4, '2019-07-05 01:37:16.547 ', '2019-07-05 01:37:16.547 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('虾肉', 4, '2019-07-05 01:37:16.548 ', '2019-07-05 01:37:16.548 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('速冻馄饨', 4, '2019-07-05 01:37:16.550 ', '2019-07-05 01:37:16.550 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('棒棒糖', 4, '2019-07-05 01:37:16.551 ', '2019-07-05 01:37:16.551 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蛤肉', 4, '2019-07-05 01:37:16.552 ', '2019-07-05 01:37:16.552 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('小龙虾肉', 4, '2019-07-05 01:37:16.554 ', '2019-07-05 01:37:16.554 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蚕豆', 4, '2019-07-05 01:37:16.555 ', '2019-07-05 01:37:16.808 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('樱桃梗', 4, '2019-07-05 01:37:16.559 ', '2019-07-05 01:37:16.559 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水果皮', 4, '2019-07-05 01:37:16.560 ', '2019-07-05 01:37:16.560 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('皮蛋', 4, '2019-07-05 01:37:16.577 ', '2019-07-05 01:37:16.577 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('咸蛋', 4, '2019-07-05 01:37:16.578 ', '2019-07-05 01:37:16.578 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('奇异果', 4, '2019-07-05 01:37:16.580 ', '2019-07-05 01:37:16.580 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('花甲壳', 8, '2019-07-05 01:37:16.581 ', '2019-08-02 00:10:04.204 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('海底捞锅底', 4, '2019-07-05 01:37:16.582 ', '2019-07-05 01:37:16.582 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牛肉干', 4, '2019-07-05 01:37:16.583 ', '2019-07-05 01:37:17.111 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('椰果', 4, '2019-07-05 01:37:16.584 ', '2019-07-05 01:37:16.584 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸭下巴', 4, '2019-07-05 01:37:16.584 ', '2019-07-05 01:37:16.584 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('芝麻酱', 4, '2019-07-05 01:37:16.585 ', '2019-07-05 01:37:16.585 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('花生酱', 4, '2019-07-05 01:37:16.586 ', '2019-07-05 01:37:16.586 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('小龙虾黄', 4, '2019-07-05 01:37:16.588 ', '2019-07-05 01:37:16.588 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('肯德基炸鸡', 4, '2019-07-05 01:37:16.590 ', '2019-07-05 01:37:16.590 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('麦当劳炸鸡', 4, '2019-07-05 01:37:16.592 ', '2019-07-05 01:37:16.592 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('面饼', 4, '2019-07-05 01:37:16.593 ', '2019-07-05 01:37:16.593 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸡蛋饼', 4, '2019-07-05 01:37:16.594 ', '2019-07-05 01:37:16.594 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('煎饼', 4, '2019-07-05 01:37:16.595 ', '2019-07-05 01:37:16.595 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('哈密瓜', 4, '2019-07-05 01:37:16.610 ', '2019-07-05 01:37:16.610 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('哈密瓜籽', 4, '2019-07-05 01:37:16.611 ', '2019-07-05 01:37:16.611 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('干树叶', 4, '2019-07-05 01:37:16.612 ', '2019-07-05 01:37:16.612 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('绿豆糕', 4, '2019-07-05 01:37:16.614 ', '2019-07-05 01:37:16.614 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('乒乓糯米糍', 4, '2019-07-05 01:37:16.617 ', '2019-07-05 01:37:16.617 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('杏仁核', 4, '2019-07-05 01:37:16.618 ', '2019-07-05 01:37:16.618 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('黄杏核', 4, '2019-07-05 01:37:16.619 ', '2019-07-05 01:37:16.619 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('茶叶', 4, '2019-07-05 01:37:16.620 ', '2019-07-05 01:37:16.620 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铁观音', 4, '2019-07-05 01:37:16.621 ', '2019-07-05 01:37:16.621 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('乌龙茶', 4, '2019-07-05 01:37:16.622 ', '2019-07-05 01:37:16.622 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('白茶', 4, '2019-07-05 01:37:16.623 ', '2019-07-05 01:37:16.623 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('桔普茶', 4, '2019-07-05 01:37:16.624 ', '2019-07-05 01:37:16.624 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水草', 4, '2019-07-05 01:37:16.625 ', '2019-07-05 01:37:16.625 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('海藻', 4, '2019-07-05 01:37:16.626 ', '2019-07-05 01:37:16.626 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水果软核', 4, '2019-07-05 01:37:16.628 ', '2019-07-05 01:37:16.628 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('咖喱粉', 4, '2019-07-05 01:37:16.629 ', '2019-07-05 01:37:16.629 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('瓜子', 4, '2019-07-05 01:37:16.630 ', '2019-07-05 01:37:16.874 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('大蒜皮', 4, '2019-07-05 01:37:16.643 ', '2019-07-05 01:37:16.643 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('扇贝壳', 4, '2019-07-05 01:37:16.645 ', '2019-07-05 01:37:16.645 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('咸蛋壳', 4, '2019-07-05 01:37:16.646 ', '2019-07-05 01:37:16.646 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸭蛋壳', 4, '2019-07-05 01:37:16.647 ', '2019-07-05 01:37:16.647 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('凤梨皮', 4, '2019-07-05 01:37:16.648 ', '2019-07-05 01:37:16.648 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('面包屑', 4, '2019-07-05 01:37:16.649 ', '2019-07-05 01:37:16.649 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('小龙虾', 4, '2019-07-05 01:37:16.650 ', '2019-07-05 01:37:16.650 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('香榧子壳', 4, '2019-07-05 01:37:16.650 ', '2019-07-05 01:37:16.650 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸡蛋皮', 4, '2019-07-05 01:37:16.651 ', '2019-07-05 01:37:16.651 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('凤梨酥', 4, '2019-07-05 01:37:16.654 ', '2019-07-05 01:37:16.654 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('苹果派', 4, '2019-07-05 01:37:16.655 ', '2019-07-05 01:37:16.655 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玉米芯', 4, '2019-07-05 01:37:16.679 ', '2019-07-05 01:37:16.679 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('黄瓜皮', 4, '2019-07-05 01:37:16.680 ', '2019-07-05 01:37:16.680 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('橙子皮', 4, '2019-07-05 01:37:16.681 ', '2019-07-05 01:37:16.681 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('生鸡蛋壳', 4, '2019-07-05 01:37:16.682 ', '2019-07-05 01:37:16.682 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('花茶渣', 4, '2019-07-05 01:37:16.683 ', '2019-07-05 01:37:16.683 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('荷叶', 4, '2019-07-05 01:37:16.688 ', '2019-07-05 01:37:16.688 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('柚子核', 4, '2019-07-05 01:37:16.689 ', '2019-07-05 01:37:16.689 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('青蟹壳', 4, '2019-07-05 01:37:16.690 ', '2019-07-05 01:37:16.690 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('山楂片', 4, '2019-07-05 01:37:16.691 ', '2019-07-05 01:37:16.691 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('红辣椒', 4, '2019-07-05 01:37:16.692 ', '2019-07-05 01:37:16.692 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('巧克力粉', 4, '2019-07-05 01:37:16.693 ', '2019-07-05 01:37:16.693 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸭架', 4, '2019-07-05 01:37:16.693 ', '2019-07-05 01:37:16.693 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('白砂糖', 4, '2019-07-05 01:37:16.694 ', '2019-07-05 01:37:16.694 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸽粪', 4, '2019-07-05 01:37:16.696 ', '2019-07-05 01:37:16.696 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('桃子皮', 4, '2019-07-05 01:37:16.708 ', '2019-07-05 01:37:16.708 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('桂圆干', 4, '2019-07-05 01:37:16.709 ', '2019-07-05 01:37:16.709 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('中草药材', 4, '2019-07-05 01:37:16.711 ', '2019-07-05 01:37:16.711 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('梭子蟹壳', 4, '2019-07-05 01:37:16.714 ', '2019-07-05 01:37:16.714 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('河虾', 4, '2019-07-05 01:37:16.715 ', '2019-07-05 01:37:16.715 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('白米虾', 4, '2019-07-05 01:37:16.716 ', '2019-07-05 01:37:16.716 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('象鼻蚌', 4, '2019-07-05 01:37:16.717 ', '2019-07-05 01:37:16.717 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水蜜桃核', 4, '2019-07-05 01:37:16.719 ', '2019-07-05 01:37:16.719 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('糯米纸', 4, '2019-07-05 01:37:16.722 ', '2019-07-05 01:37:16.722 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸡蛋卷', 4, '2019-07-05 01:37:16.723 ', '2019-07-05 01:37:16.723 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸡蛋壳', 4, '2019-07-05 01:37:16.725 ', '2019-07-05 01:37:16.725 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('豆干', 4, '2019-07-05 01:37:16.728 ', '2019-07-05 01:37:16.728 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('豆腐干', 4, '2019-07-05 01:37:16.741 ', '2019-07-05 01:37:16.741 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('冬瓜籽', 4, '2019-07-05 01:37:16.743 ', '2019-07-05 01:37:16.743 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('向日葵花束', 4, '2019-07-05 01:37:16.744 ', '2019-07-05 01:37:16.744 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('枯萎花束', 4, '2019-07-05 01:37:16.747 ', '2019-07-05 01:37:16.747 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('笋干', 4, '2019-07-05 01:37:16.748 ', '2019-07-05 01:37:16.748 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('白煮蛋', 4, '2019-07-05 01:37:16.749 ', '2019-07-05 01:37:16.749 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('花蛤肉', 4, '2019-07-05 01:37:16.751 ', '2019-07-05 01:37:16.751 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蛋黄酥', 4, '2019-07-05 01:37:16.753 ', '2019-07-05 01:37:16.753 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('油墩子', 4, '2019-07-05 01:37:16.756 ', '2019-07-05 01:37:16.894 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('葱油饼', 4, '2019-07-05 01:37:16.759 ', '2019-07-05 01:37:16.759 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('山东煎饼', 4, '2019-07-05 01:37:16.760 ', '2019-07-05 01:37:16.760 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('碎骨头', 4, '2019-07-05 01:37:16.761 ', '2019-07-05 01:37:16.761 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('枸杞', 4, '2019-07-05 01:37:16.762 ', '2019-07-05 01:37:16.762 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('猪肝', 4, '2019-07-05 01:37:16.776 ', '2019-07-05 01:37:16.776 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('碧根果肉', 4, '2019-07-05 01:37:16.777 ', '2019-07-05 01:37:16.777 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('茭白皮', 4, '2019-07-05 01:37:16.778 ', '2019-07-05 01:37:16.778 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('西葫芦', 4, '2019-07-05 01:37:16.783 ', '2019-07-05 01:37:16.783 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('猪肉', 4, '2019-07-05 01:37:16.784 ', '2019-07-05 01:37:16.784 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('小排骨', 4, '2019-07-05 01:37:16.785 ', '2019-07-05 01:37:16.785 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('沙拉酱', 4, '2019-07-05 01:37:16.786 ', '2019-07-05 01:37:16.786 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('拉菲草', 4, '2019-07-05 01:37:16.787 ', '2019-07-05 01:37:16.787 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('大白兔奶糖', 4, '2019-07-05 01:37:16.787 ', '2019-07-05 01:37:16.787 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('猕猴桃皮', 4, '2019-07-05 01:37:16.788 ', '2019-07-05 01:37:16.788 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('桃仁', 4, '2019-07-05 01:37:16.791 ', '2019-07-05 01:37:16.791 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('杨梅干', 4, '2019-07-05 01:37:16.811 ', '2019-07-05 01:37:16.811 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('带子壳', 4, '2019-07-05 01:37:16.812 ', '2019-07-05 01:37:16.812 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玉米塑料袋', 4, '2019-07-05 01:37:16.813 ', '2019-07-05 01:37:16.813 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸭头', 4, '2019-07-05 01:37:16.814 ', '2019-07-05 01:37:16.814 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('翅尖', 4, '2019-07-05 01:37:16.815 ', '2019-07-05 01:37:16.815 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('番茄沙司', 4, '2019-07-05 01:37:16.816 ', '2019-07-05 01:37:16.816 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('巴旦木', 4, '2019-07-05 01:37:16.817 ', '2019-07-05 01:37:16.817 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('叶子', 4, '2019-07-05 01:37:16.823 ', '2019-07-05 01:37:16.823 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸭舌', 4, '2019-07-05 01:37:16.825 ', '2019-07-05 01:37:16.825 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('黄芪', 4, '2019-07-05 01:37:16.842 ', '2019-07-05 01:37:16.842 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('三七粉', 4, '2019-07-05 01:37:16.844 ', '2019-07-05 01:37:16.844 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('章鱼小丸子', 4, '2019-07-05 01:37:16.847 ', '2019-07-05 01:37:16.847 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鱿鱼', 4, '2019-07-05 01:37:16.848 ', '2019-07-05 01:37:16.848 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鱿鱼丝', 4, '2019-07-05 01:37:16.850 ', '2019-07-05 01:37:16.850 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('生蚝肉', 4, '2019-07-05 01:37:16.852 ', '2019-07-05 01:37:16.852 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('枇杷', 4, '2019-07-05 01:37:16.855 ', '2019-07-05 01:37:16.855 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('烤鸭', 4, '2019-07-05 01:37:16.856 ', '2019-07-05 01:37:16.856 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('北京烤鸭', 4, '2019-07-05 01:37:16.857 ', '2019-08-02 00:05:46.687 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('洋山芋', 4, '2019-07-05 01:37:16.860 ', '2019-07-05 01:37:16.860 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铁棍山药', 4, '2019-07-05 01:37:16.862 ', '2019-07-05 01:37:16.862 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸭锁骨', 4, '2019-07-05 01:37:16.875 ', '2019-07-05 01:37:16.875 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('海星', 4, '2019-07-05 01:37:16.876 ', '2019-07-05 01:37:16.876 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('黑椒牛排', 4, '2019-07-05 01:37:16.878 ', '2019-07-05 01:37:16.878 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('杨桃', 4, '2019-07-05 01:37:16.882 ', '2019-07-05 01:37:16.882 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('胡萝卜皮', 4, '2019-07-05 01:37:16.884 ', '2019-07-05 01:37:16.884 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('生肉', 4, '2019-07-05 01:37:16.884 ', '2019-07-05 01:37:16.884 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('皮蛋壳', 4, '2019-07-05 01:37:16.885 ', '2019-07-05 01:37:16.885 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('山楂干', 4, '2019-07-05 01:37:16.886 ', '2019-07-05 01:37:16.886 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('番茄皮', 4, '2019-07-05 01:37:16.887 ', '2019-07-05 01:37:16.887 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('番茄梗', 4, '2019-07-05 01:37:16.888 ', '2019-07-05 01:37:16.888 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鲜花饼', 4, '2019-07-05 01:37:16.890 ', '2019-07-05 01:37:16.890 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('公丁香', 4, '2019-07-05 01:37:16.891 ', '2019-07-05 01:37:16.891 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('薄荷叶', 4, '2019-07-05 01:37:16.892 ', '2019-07-05 01:37:16.892 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('花甲粉', 4, '2019-07-05 01:37:16.893 ', '2019-07-05 01:37:16.893 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('金丝皇菊', 4, '2019-07-05 01:37:16.893 ', '2019-07-05 01:37:16.893 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('火腿肠', 4, '2019-07-05 01:37:16.895 ', '2019-07-05 01:37:16.895 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('藏红花', 4, '2019-07-05 01:37:16.896 ', '2019-07-05 01:37:16.896 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('基围虾', 4, '2019-07-05 01:37:16.909 ', '2019-07-05 01:37:16.909 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('基围虾壳', 4, '2019-07-05 01:37:16.910 ', '2019-07-05 01:37:16.910 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('烘山芋皮', 4, '2019-07-05 01:37:16.911 ', '2019-07-05 01:37:16.911 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('茶叶蛋壳', 4, '2019-07-05 01:37:16.913 ', '2019-07-05 01:37:16.913 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('咸鸡', 4, '2019-07-05 01:37:16.915 ', '2019-07-05 01:37:16.915 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('烤鸡', 4, '2019-07-05 01:37:16.916 ', '2019-07-05 01:37:16.916 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('盐水鸭', 4, '2019-07-05 01:37:16.917 ', '2019-07-05 01:37:16.917 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('银耳', 4, '2019-07-05 01:37:16.918 ', '2019-07-05 01:37:16.918 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('意大利面', 4, '2019-07-05 01:37:16.919 ', '2019-07-05 01:37:16.919 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('烧饼', 4, '2019-07-05 01:37:16.920 ', '2019-07-05 01:37:16.920 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('红薯皮', 4, '2019-07-05 01:37:16.924 ', '2019-07-05 01:37:16.924 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('雪花酥', 4, '2019-07-05 01:37:16.925 ', '2019-07-05 01:37:16.925 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('干桂圆壳', 4, '2019-07-05 01:37:16.927 ', '2019-07-05 01:37:16.927 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('丝瓜', 4, '2019-07-05 01:37:16.942 ', '2019-07-05 01:37:16.942 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玉米粒', 4, '2019-07-05 01:37:16.943 ', '2019-07-05 01:37:16.943 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('胖大海', 4, '2019-07-05 01:37:16.944 ', '2019-07-05 01:37:16.944 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('干面粉', 4, '2019-07-05 01:37:16.945 ', '2019-07-05 01:37:16.945 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('薰衣草', 4, '2019-07-05 01:37:16.946 ', '2019-07-05 01:37:16.946 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('干花生壳', 4, '2019-07-05 01:37:16.947 ', '2019-07-05 01:37:16.947 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('猫冻干', 4, '2019-07-05 01:37:16.948 ', '2019-07-05 01:37:16.948 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('麻辣香锅残渣', 4, '2019-07-05 01:37:16.949 ', '2019-07-05 01:37:16.949 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('菠萝蜜肉', 4, '2019-07-05 01:37:16.950 ', '2019-07-05 01:37:16.950 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('五香蛋', 4, '2019-07-05 01:37:16.951 ', '2019-07-05 01:37:16.951 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('莴苣', 4, '2019-07-05 01:37:16.952 ', '2019-07-05 01:37:16.952 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蒲公英', 4, '2019-07-05 01:37:16.953 ', '2019-07-05 01:37:16.953 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('小笼包', 4, '2019-07-05 01:37:16.954 ', '2019-07-05 01:37:16.954 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('灌汤包', 4, '2019-07-05 01:37:16.955 ', '2019-07-05 01:37:16.955 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('德克士炸鸡', 4, '2019-07-05 01:37:16.956 ', '2019-07-05 01:37:16.956 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鲫鱼', 4, '2019-07-05 01:37:16.957 ', '2019-07-05 01:37:16.957 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鳜鱼', 4, '2019-07-05 01:37:16.958 ', '2019-07-05 01:37:16.958 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('粉丝', 4, '2019-07-05 01:37:16.959 ', '2019-07-05 01:37:16.959 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木耳', 4, '2019-07-05 01:37:16.960 ', '2019-07-05 01:37:16.960 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('花草茶渣', 4, '2019-07-05 01:37:16.961 ', '2019-07-05 01:37:16.961 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('肉夹馍', 4, '2019-07-05 01:37:16.962 ', '2019-07-05 01:37:16.962 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('粗盐', 4, '2019-07-05 01:37:16.975 ', '2019-07-05 01:37:16.975 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('豆杆', 4, '2019-07-05 01:37:16.977 ', '2019-07-05 01:37:16.977 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('青豆', 4, '2019-07-05 01:37:16.979 ', '2019-07-05 01:37:16.979 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('青豆萁', 4, '2019-07-05 01:37:16.980 ', '2019-07-05 01:37:16.980 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('饺子皮', 4, '2019-07-05 01:37:16.981 ', '2019-07-05 01:37:16.981 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('馄饨皮', 4, '2019-07-05 01:37:16.982 ', '2019-07-05 01:37:16.982 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('白瓜子', 4, '2019-07-05 01:37:16.984 ', '2019-07-05 01:37:16.984 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('煎饼果子', 4, '2019-07-05 01:37:16.985 ', '2019-07-05 01:37:16.985 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('小葱', 4, '2019-07-05 01:37:16.986 ', '2019-07-05 01:37:16.986 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木瓜', 4, '2019-07-05 01:37:16.987 ', '2019-07-05 01:37:16.987 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木瓜籽', 4, '2019-07-05 01:37:16.989 ', '2019-07-05 01:37:16.989 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('可降解吸管', 4, '2019-07-05 01:37:16.991 ', '2019-07-05 01:37:16.991 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('小肉骨头', 4, '2019-07-05 01:37:16.994 ', '2019-07-05 01:37:16.994 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('螺蛳粉', 4, '2019-07-05 01:37:16.995 ', '2019-07-05 01:37:16.995 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('芋艿皮', 4, '2019-07-05 01:37:16.996 ', '2019-07-05 01:37:16.996 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('花椒粉', 4, '2019-07-05 01:37:17.014 ', '2019-07-05 01:37:17.014 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('绿豆沙', 4, '2019-07-05 01:37:17.016 ', '2019-07-05 01:37:17.016 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('荞麦', 4, '2019-07-05 01:37:17.017 ', '2019-07-05 01:37:17.017 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('荞麦面', 4, '2019-07-05 01:37:17.018 ', '2019-07-05 01:37:17.018 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('阿胶', 4, '2019-07-05 01:37:17.019 ', '2019-07-05 01:37:17.019 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('宽粉条', 4, '2019-07-05 01:37:17.021 ', '2019-07-05 01:37:17.021 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('毛豆皮', 4, '2019-07-05 01:37:17.022 ', '2019-07-05 01:37:17.022 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('麦片', 4, '2019-07-05 01:37:17.024 ', '2019-07-05 01:37:17.024 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纸吸管', 4, '2019-07-05 01:37:17.025 ', '2019-07-05 01:37:17.025 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('调制海藻面膜', 4, '2019-07-05 01:37:17.026 ', '2019-07-05 01:37:17.026 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('桂花糕', 4, '2019-07-05 01:37:17.027 ', '2019-07-05 01:37:17.027 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('猪皮', 4, '2019-07-05 01:37:17.029 ', '2019-07-05 01:37:17.029 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('臭虫', 4, '2019-07-05 01:37:17.046 ', '2019-07-05 01:37:17.046 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('芡实糕', 4, '2019-07-05 01:37:17.047 ', '2019-07-05 01:37:17.047 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牛轧糖', 4, '2019-07-05 01:37:17.049 ', '2019-07-05 01:37:17.051 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('火鸡骨头', 4, '2019-07-05 01:37:17.052 ', '2019-07-05 01:37:17.052 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸡头', 4, '2019-07-05 01:37:17.053 ', '2019-07-05 01:37:17.053 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('猪排', 4, '2019-07-05 01:37:17.056 ', '2019-07-05 01:37:17.056 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('猪扒', 4, '2019-07-05 01:37:17.058 ', '2019-07-05 01:37:17.058 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蜗牛', 4, '2019-07-05 01:37:17.059 ', '2019-07-05 01:37:17.059 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鱼饲料', 4, '2019-07-05 01:37:17.060 ', '2019-07-05 01:37:17.060 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('银杏果', 4, '2019-07-05 01:37:17.061 ', '2019-07-05 01:37:17.061 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('麻花', 4, '2019-07-05 01:37:17.062 ', '2019-07-05 01:37:17.062 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鱼头', 4, '2019-07-05 01:37:17.063 ', '2019-07-05 01:37:17.063 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('早餐谷物', 4, '2019-07-05 01:37:17.064 ', '2019-07-05 01:37:17.064 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('猪小排', 4, '2019-07-05 01:37:17.075 ', '2019-07-05 01:37:17.075 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('猪肉排骨', 4, '2019-07-05 01:37:17.077 ', '2019-07-05 01:37:17.077 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玉米纤维袋', 4, '2019-07-05 01:37:17.078 ', '2019-07-05 01:37:17.078 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('话梅壳', 4, '2019-07-05 01:37:17.079 ', '2019-07-05 01:37:17.079 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('乌梅壳', 4, '2019-07-05 01:37:17.081 ', '2019-07-05 01:37:17.081 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('山竹核', 4, '2019-07-05 01:37:17.083 ', '2019-07-05 01:37:17.083 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸡软骨', 4, '2019-07-05 01:37:17.086 ', '2019-07-05 01:37:17.086 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('杏子核', 4, '2019-07-05 01:37:17.088 ', '2019-07-05 01:37:17.088 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('虾皮', 4, '2019-07-05 01:37:17.091 ', '2019-07-05 01:37:17.091 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('虾米', 4, '2019-07-05 01:37:17.092 ', '2019-07-05 01:37:17.092 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蟠桃核', 4, '2019-07-05 01:37:17.093 ', '2019-07-05 01:37:17.093 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('手擀面', 4, '2019-07-05 01:37:17.097 ', '2019-07-05 01:37:17.097 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('甲鱼小骨', 4, '2019-07-05 01:37:17.113 ', '2019-07-05 01:37:17.113 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('猪肋排', 4, '2019-07-05 01:37:17.115 ', '2019-07-05 01:37:17.115 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('里脊肉', 4, '2019-07-05 01:37:17.116 ', '2019-07-05 01:37:17.116 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木薯淀粉', 4, '2019-07-05 01:37:17.117 ', '2019-07-05 01:37:17.117 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('香蕉干', 4, '2019-07-05 01:37:17.117 ', '2019-07-05 01:37:17.117 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸭皮', 4, '2019-07-05 01:37:17.120 ', '2019-07-05 01:37:17.120 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纸巾', 8, '2019-07-05 01:37:17.121 ', '2019-07-05 01:37:17.121 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牙签', 8, '2019-07-05 01:37:17.122 ', '2019-07-05 01:37:17.122 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('一次性筷子', 8, '2019-07-05 01:37:17.167 ', '2019-07-05 01:37:17.167 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('陶瓷类废弃物', 8, '2019-07-05 01:37:17.170 ', '2019-07-05 01:37:17.170 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('清扫渣土', 8, '2019-07-05 01:37:17.171 ', '2019-07-05 01:37:17.171 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('陶瓷碗碟', 8, '2019-07-05 01:37:17.172 ', '2019-07-05 01:37:17.172 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('大块骨头', 8, '2019-07-05 01:37:17.173 ', '2019-07-05 01:37:17.173 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('植物硬壳', 8, '2019-07-05 01:37:17.175 ', '2019-07-05 01:37:17.175 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('枯萎花草', 8, '2019-07-05 01:37:17.176 ', '2019-07-05 01:37:17.176 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料袋', 8, '2019-07-05 01:37:17.177 ', '2019-07-05 01:37:17.177 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('保鲜膜', 8, '2019-07-05 01:37:17.180 ', '2019-07-05 01:37:17.180 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('A4纸包装袋', 8, '2019-07-05 01:37:17.191 ', '2019-07-05 01:37:17.191 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('零食包装袋', 8, '2019-07-05 01:37:17.193 ', '2019-07-05 01:37:17.273 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('快递包装袋', 8, '2019-07-05 01:37:17.194 ', '2019-07-05 01:37:17.194 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('热饮杯盖', 8, '2019-07-05 01:37:17.195 ', '2019-07-05 01:37:17.195 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('咖啡杯杯盖', 8, '2019-07-05 01:37:17.196 ', '2019-07-05 01:37:17.196 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('干电池(无汞)', 8, '2019-07-05 01:37:17.198 ', '2019-07-05 01:37:17.198 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纸尿裤', 8, '2019-07-05 01:37:17.200 ', '2019-07-05 01:37:17.200 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卫生纸', 8, '2019-07-05 01:37:17.202 ', '2019-07-05 01:37:17.202 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卫生巾外层薄塑纸', 8, '2019-07-05 01:37:17.203 ', '2019-07-05 01:37:17.203 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('湿纸巾', 8, '2019-07-05 01:37:17.204 ', '2019-07-05 01:37:17.204 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧浴缸', 8, '2019-07-05 01:37:17.205 ', '2019-07-05 01:37:17.205 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('盆子', 8, '2019-07-05 01:37:17.206 ', '2019-07-05 01:37:17.206 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('坏马桶', 8, '2019-07-05 01:37:17.207 ', '2019-07-05 01:37:17.207 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧水槽', 8, '2019-07-05 01:37:17.207 ', '2019-07-05 01:37:17.207 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('坛子', 8, '2019-07-05 01:37:17.211 ', '2019-07-05 01:37:17.211 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('菜板', 8, '2019-07-05 01:37:17.233 ', '2019-07-05 01:37:17.233 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('砖块', 8, '2019-07-05 01:37:17.234 ', '2019-07-05 01:37:17.234 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('杯子', 8, '2019-07-05 01:37:17.235 ', '2019-07-05 01:37:17.235 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('瓦片', 8, '2019-07-05 01:37:17.236 ', '2019-07-05 01:37:17.236 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('西梅核', 8, '2019-07-05 01:37:17.237 ', '2019-07-05 01:37:17.237 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('坏的花盆', 8, '2019-07-05 01:37:17.238 ', '2019-07-05 01:37:17.238 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木质梳子', 8, '2019-07-05 01:37:17.240 ', '2019-07-05 01:37:17.240 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('脏污衣服', 8, '2019-07-05 01:37:17.242 ', '2019-07-05 01:37:17.242 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('湿垃圾袋', 8, '2019-07-05 01:37:17.244 ', '2019-07-05 01:37:17.244 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水彩笔', 8, '2019-07-05 01:37:17.262 ', '2019-07-05 01:37:17.262 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('过期化妆品', 8, '2019-07-05 01:37:17.263 ', '2019-07-05 01:37:17.263 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧镜子', 8, '2019-07-05 01:37:17.266 ', '2019-07-05 01:37:17.266 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('猫罐头', 8, '2019-07-05 01:37:17.267 ', '2019-07-05 01:37:17.267 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牙膏壳', 8, '2019-07-05 01:37:17.268 ', '2019-07-05 01:37:17.268 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('椰子壳', 8, '2019-07-05 01:37:17.270 ', '2019-07-05 01:37:17.270 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料垃圾袋', 8, '2019-07-05 01:37:17.271 ', '2019-07-05 01:37:17.271 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('污染纸张', 8, '2019-07-05 01:37:17.275 ', '2019-07-05 01:37:17.275 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废弃食品袋', 8, '2019-07-05 01:37:17.275 ', '2019-07-05 01:37:17.275 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('一次性餐盒', 8, '2019-07-05 01:37:17.276 ', '2019-07-05 01:37:17.276 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧毛巾', 8, '2019-07-05 01:37:17.296 ', '2019-07-05 01:37:17.296 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牙膏皮', 8, '2019-07-05 01:37:17.297 ', '2019-07-05 01:37:17.297 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废弃的纸张', 8, '2019-07-05 01:37:17.299 ', '2019-07-05 01:37:17.299 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('装修废弃物', 8, '2019-07-05 01:37:17.302 ', '2019-07-05 01:37:17.302 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('盛放厨余果皮的垃圾袋', 8, '2019-07-05 01:37:17.303 ', '2019-07-05 01:37:17.303 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('灰土', 8, '2019-07-05 01:37:17.304 ', '2019-07-05 01:37:17.304 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('污染较严重的纸', 8, '2019-07-05 01:37:17.305 ', '2019-07-05 01:37:17.305 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('核桃壳', 8, '2019-07-05 01:37:17.306 ', '2019-07-05 01:37:17.306 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('头发', 8, '2019-07-05 01:37:17.310 ', '2019-07-05 01:37:17.310 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('胶带', 8, '2019-07-05 01:37:17.324 ', '2019-07-05 01:37:17.324 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('一次性咖啡纸杯', 8, '2019-07-05 01:37:17.325 ', '2019-07-05 01:37:17.325 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('奶茶纸杯', 8, '2019-07-05 01:37:17.326 ', '2019-07-05 01:37:17.326 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('护理垫', 8, '2019-07-05 01:37:17.327 ', '2019-07-05 01:37:17.327 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('包裹着狗屎的纸巾', 8, '2019-07-05 01:37:17.330 ', '2019-07-05 01:37:17.330 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('包裹着狗屎的报纸', 8, '2019-07-05 01:37:17.331 ', '2019-07-05 01:37:18.513 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('雪糕袋', 8, '2019-07-05 01:37:17.332 ', '2019-07-05 01:37:17.332 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('棉花棒', 8, '2019-07-05 01:37:17.333 ', '2019-07-05 01:37:17.333 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('橡皮泥', 8, '2019-07-05 01:37:17.334 ', '2019-07-05 01:37:17.334 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('粽叶', 8, '2019-07-05 01:37:17.334 ', '2019-07-05 01:37:17.334 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('猫毛', 8, '2019-07-05 01:37:17.337 ', '2019-07-05 01:37:17.337 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('小票', 8, '2019-07-05 01:37:17.343 ', '2019-07-05 01:37:17.343 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蚊香片', 8, '2019-07-05 01:37:17.363 ', '2019-07-05 01:37:17.363 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('暖宝宝', 8, '2019-07-05 01:37:17.364 ', '2019-07-05 01:37:17.364 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('干冰', 8, '2019-07-05 01:37:17.365 ', '2019-07-05 01:37:17.365 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铅笔屑', 8, '2019-07-05 01:37:17.367 ', '2019-07-05 01:37:17.367 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('被污染的垃圾袋', 8, '2019-07-05 01:37:17.368 ', '2019-07-05 01:37:17.368 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('田螺壳', 4, '2019-07-05 01:37:17.369 ', '2019-07-13 16:39:37.575 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蛏子壳', 8, '2019-07-05 01:37:17.370 ', '2019-07-05 01:37:17.370 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('文蛤壳', 8, '2019-07-05 01:37:17.372 ', '2019-07-05 01:37:17.372 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水彩颜料', 8, '2019-07-05 01:37:17.373 ', '2019-07-05 01:37:17.373 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('一次性口罩', 8, '2019-07-05 01:37:17.374 ', '2019-07-05 01:37:17.374 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('口香糖', 8, '2019-07-05 01:37:17.377 ', '2019-07-05 01:37:17.377 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('一次性塑料袋', 8, '2019-07-05 01:37:17.379 ', '2019-07-05 01:37:17.379 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('污渍纸巾', 8, '2019-07-05 01:37:17.395 ', '2019-07-05 01:37:17.395 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木瓶塞', 8, '2019-07-05 01:37:17.397 ', '2019-07-05 01:37:17.397 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('指甲片', 8, '2019-07-05 01:37:17.398 ', '2019-07-05 01:37:17.398 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('大米袋', 8, '2019-07-05 01:37:17.401 ', '2019-07-05 01:37:17.401 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('烟盒', 1, '2019-07-05 01:37:17.401 ', '2019-07-13 16:30:34.710 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('烧烤木签', 8, '2019-07-05 01:37:17.403 ', '2019-07-05 01:37:17.403 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('棉花球', 8, '2019-07-05 01:37:17.404 ', '2019-07-05 01:37:17.404 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('泡沫盒子', 8, '2019-07-05 01:37:17.404 ', '2019-07-05 01:37:17.404 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('大龙虾壳', 8, '2019-07-05 01:37:17.406 ', '2019-07-05 01:37:17.406 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('中药袋', 8, '2019-07-05 01:37:17.407 ', '2019-07-05 01:37:17.407 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('胶带纸', 8, '2019-07-05 01:37:17.415 ', '2019-07-05 01:37:17.415 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('薯片罐', 8, '2019-07-05 01:37:17.416 ', '2019-07-05 01:37:17.416 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牙线', 8, '2019-07-05 01:37:17.417 ', '2019-07-05 01:37:17.417 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料吸管', 8, '2019-07-05 01:37:17.418 ', '2019-07-05 01:37:17.418 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('一次性保鲜膜', 8, '2019-07-05 01:37:17.422 ', '2019-07-05 01:37:17.422 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('湿巾纸', 8, '2019-07-05 01:37:17.423 ', '2019-07-05 01:37:17.423 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('瓷器碎片', 8, '2019-07-05 01:37:17.446 ', '2019-07-05 01:37:17.446 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('砖瓦陶瓷', 8, '2019-07-05 01:37:17.447 ', '2019-07-05 01:37:17.447 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('雪糕包装袋', 8, '2019-07-05 01:37:17.448 ', '2019-07-05 01:37:17.448 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('泡面桶', 8, '2019-07-05 01:37:17.449 ', '2019-07-05 01:37:17.449 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('酒精棉花', 8, '2019-07-05 01:37:17.450 ', '2019-07-05 01:37:17.450 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玉米皮', 8, '2019-07-05 01:37:17.452 ', '2019-07-05 01:37:17.452 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('奶茶塑料杯', 8, '2019-07-05 01:37:17.455 ', '2019-07-05 01:37:17.455 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('头屑', 8, '2019-07-05 01:37:17.456 ', '2019-07-05 01:37:17.456 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('帝王蟹壳', 8, '2019-07-05 01:37:17.459 ', '2019-07-05 01:37:17.459 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('一次性用品', 8, '2019-07-05 01:37:17.460 ', '2019-07-05 01:37:17.460 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('渣土', 8, '2019-07-05 01:37:17.460 ', '2019-07-05 01:37:17.460 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('陶瓷制品', 8, '2019-07-05 01:37:17.462 ', '2019-07-05 01:37:17.462 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('烘培纸', 8, '2019-07-05 01:37:17.463 ', '2019-07-05 01:37:17.463 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('除湿袋', 8, '2019-07-05 01:37:17.464 ', '2019-07-05 01:37:18.421 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('滤纸', 8, '2019-07-05 01:37:17.480 ', '2019-07-05 01:37:17.480 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('生蚝壳', 8, '2019-07-05 01:37:17.481 ', '2019-07-05 01:37:17.481 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('猪大骨', 8, '2019-07-05 01:37:17.482 ', '2019-07-05 01:37:17.482 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('一次性塑料餐盒', 8, '2019-07-05 01:37:17.483 ', '2019-07-05 01:37:17.483 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('调料袋', 8, '2019-07-05 01:37:17.484 ', '2019-07-05 01:37:17.484 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('发热包', 8, '2019-07-05 01:37:17.485 ', '2019-07-05 01:37:17.485 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('洗衣液包装袋', 8, '2019-07-05 01:37:17.486 ', '2019-07-05 01:37:17.486 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('咖啡滤纸', 8, '2019-07-05 01:37:17.487 ', '2019-07-05 01:37:17.487 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('包裹着狗屎的塑料袋', 8, '2019-07-05 01:37:17.489 ', '2019-07-05 01:37:17.489 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料盖子', 8, '2019-07-05 01:37:17.490 ', '2019-07-05 01:37:17.490 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('头饰', 8, '2019-07-05 01:37:17.491 ', '2019-07-05 01:37:17.491 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('胶囊咖啡', 8, '2019-07-05 01:37:17.492 ', '2019-07-05 01:37:17.492 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('椰青壳', 8, '2019-07-05 01:37:17.493 ', '2019-07-05 01:37:17.493 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('吸油纸', 8, '2019-07-05 01:37:17.495 ', '2019-07-05 01:37:17.495 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('厨房用纸', 8, '2019-07-05 01:37:17.496 ', '2019-07-05 01:37:17.496 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('琴弦', 8, '2019-07-05 01:37:17.505 ', '2019-07-05 01:37:17.505 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('呕吐物纸巾', 8, '2019-07-05 01:37:17.506 ', '2019-07-05 01:37:17.506 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纸质包装袋', 8, '2019-07-05 01:37:17.507 ', '2019-07-05 01:37:17.507 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('方便面桶', 8, '2019-07-05 01:37:17.509 ', '2019-07-05 01:37:17.509 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('面膜包装袋', 8, '2019-07-05 01:37:17.510 ', '2019-07-05 01:37:17.510 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料拖鞋', 1, '2019-07-05 01:37:17.511 ', '2019-07-13 16:39:43.722 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('橡皮筋', 8, '2019-07-05 01:37:17.512 ', '2019-07-05 01:37:17.512 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水笔笔芯', 8, '2019-07-05 01:37:17.522 ', '2019-07-05 01:37:17.522 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('湿灰尘', 8, '2019-07-05 01:37:17.523 ', '2019-07-05 01:37:17.523 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蛤蜊壳', 8, '2019-07-05 01:37:17.526 ', '2019-07-05 01:37:17.526 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纽扣(少量)', 8, '2019-07-05 01:37:17.527 ', '2019-07-05 01:37:17.527 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('一次性塑料手套', 8, '2019-07-05 01:37:17.528 ', '2019-07-05 01:37:17.528 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('中性笔', 8, '2019-07-05 01:37:17.530 ', '2019-07-05 01:37:17.530 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('KFC食物包装', 8, '2019-07-05 01:37:17.532 ', '2019-07-05 01:37:17.532 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蚊香灰', 8, '2019-07-05 01:37:17.535 ', '2019-07-05 01:37:17.535 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('乳胶', 8, '2019-07-05 01:37:17.535 ', '2019-07-05 01:37:17.535 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玻璃胶', 8, '2019-07-05 01:37:17.536 ', '2019-07-05 01:37:17.536 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('带有婴儿粪便的尿不湿', 8, '2019-07-05 01:37:17.538 ', '2019-07-05 01:37:17.538 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('暖宝宝贴', 8, '2019-07-05 01:37:17.540 ', '2019-07-05 01:37:17.540 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牛奶袋', 8, '2019-07-05 01:37:17.540 ', '2019-07-05 01:37:17.540 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('血糖试纸', 8, '2019-07-05 01:37:17.558 ', '2019-07-05 01:37:17.558 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('餐饮外卖盒', 8, '2019-07-05 01:37:17.559 ', '2019-07-05 01:37:17.559 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('油画颜料', 8, '2019-07-05 01:37:17.560 ', '2019-07-05 01:37:17.560 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('油画颜料软管', 8, '2019-07-05 01:37:17.561 ', '2019-07-05 01:37:17.561 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('吸管塑料包装', 8, '2019-07-05 01:37:17.562 ', '2019-07-05 01:37:17.562 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('橡胶制品', 8, '2019-07-05 01:37:17.563 ', '2019-07-05 01:37:17.563 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('橡胶手套', 8, '2019-07-05 01:37:17.563 ', '2019-07-05 01:37:17.563 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('过期口红', 8, '2019-07-05 01:37:17.570 ', '2019-07-05 01:37:17.570 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('黄油包装纸', 8, '2019-07-05 01:37:17.570 ', '2019-07-05 01:37:17.570 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('脏纸尿裤', 8, '2019-07-05 01:37:17.572 ', '2019-07-05 01:37:17.572 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蛋糕盒', 8, '2019-07-05 01:37:17.573 ', '2019-07-05 01:37:17.573 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('干净无油食品包装袋', 8, '2019-07-05 01:37:17.575 ', '2019-07-05 01:37:17.575 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('面包袋', 8, '2019-07-05 01:37:17.576 ', '2019-07-05 01:37:17.576 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蛋糕袋', 8, '2019-07-05 01:37:17.577 ', '2019-07-05 01:37:17.577 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('快递单', 8, '2019-07-05 01:37:17.592 ', '2019-07-05 01:37:17.592 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('营养土', 8, '2019-07-05 01:37:17.594 ', '2019-07-05 01:37:17.594 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('一次性塑料盘', 8, '2019-07-05 01:37:17.595 ', '2019-07-05 01:37:17.595 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('冰宝贴', 8, '2019-07-05 01:37:17.596 ', '2019-07-05 01:37:17.596 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('一次性塑料调羹', 8, '2019-07-05 01:37:17.597 ', '2019-07-05 01:37:17.597 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('手指甲', 8, '2019-07-05 01:37:17.600 ', '2019-07-05 01:37:17.600 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('小纸屑', 8, '2019-07-05 01:37:17.605 ', '2019-07-05 01:37:17.605 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('眼镜架', 8, '2019-07-05 01:37:17.606 ', '2019-07-05 01:37:17.606 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('陶土花瓶', 8, '2019-07-05 01:37:17.607 ', '2019-07-05 01:37:17.607 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牛肋骨', 8, '2019-07-05 01:37:17.608 ', '2019-07-05 01:37:17.608 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('被油污污染过的报纸', 8, '2019-07-05 01:37:17.608 ', '2019-07-05 01:37:17.608 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('脏纸巾', 8, '2019-07-05 01:37:17.609 ', '2019-07-05 01:37:17.609 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('衣服标签', 8, '2019-07-05 01:37:17.610 ', '2019-07-05 01:37:17.610 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('小核桃壳', 8, '2019-07-05 01:37:17.613 ', '2019-07-05 01:37:17.613 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电蚊香片', 8, '2019-07-05 01:37:17.622 ', '2019-07-05 01:37:17.883 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('瓷碎片', 8, '2019-07-05 01:37:17.623 ', '2019-07-05 01:37:17.623 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卫生棉条', 8, '2019-07-05 01:37:17.626 ', '2019-07-05 01:37:17.626 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('一次性塑料浴帽', 8, '2019-07-05 01:37:17.627 ', '2019-07-05 01:37:17.627 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('一次性纸餐盘', 8, '2019-07-05 01:37:17.628 ', '2019-07-05 01:37:17.628 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纸巾包装袋', 8, '2019-07-05 01:37:17.629 ', '2019-07-05 01:37:17.629 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('抽纸塑料袋', 8, '2019-07-05 01:37:17.630 ', '2019-07-05 01:37:17.630 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('毛笔写过的纸', 8, '2019-07-05 01:37:17.631 ', '2019-07-05 01:37:17.631 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料表带', 8, '2019-07-05 01:37:17.634 ', '2019-07-05 01:37:17.634 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('粉饼盒', 8, '2019-07-05 01:37:17.636 ', '2019-07-05 01:37:17.636 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('502胶水', 8, '2019-07-05 01:37:17.641 ', '2019-07-05 01:37:17.641 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('硅胶猫砂', 8, '2019-07-05 01:37:17.657 ', '2019-07-05 01:37:17.657 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水晶猫砂', 8, '2019-07-05 01:37:17.658 ', '2019-07-05 01:37:17.658 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('冰淇淋包装袋', 8, '2019-07-05 01:37:17.658 ', '2019-07-05 01:37:17.658 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('护手霜', 8, '2019-07-05 01:37:17.659 ', '2019-07-05 01:37:18.679 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('粉尘', 8, '2019-07-05 01:37:17.662 ', '2019-07-05 01:37:17.662 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('一次性餐具', 8, '2019-07-05 01:37:17.663 ', '2019-07-05 01:37:17.663 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卸妆纸巾', 8, '2019-07-05 01:37:17.664 ', '2019-07-05 01:37:17.664 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('洗衣粉', 8, '2019-07-05 01:37:17.665 ', '2019-07-05 01:37:17.665 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('气泡膜', 8, '2019-07-05 01:37:17.666 ', '2019-07-05 01:37:17.666 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('智齿', 8, '2019-07-05 01:37:17.669 ', '2019-07-05 01:37:17.669 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('钢丝球', 8, '2019-07-05 01:37:17.675 ', '2019-07-05 01:37:17.675 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('一次性纸杯', 8, '2019-07-05 01:37:17.676 ', '2019-07-05 01:37:17.676 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('大头针', 8, '2019-07-05 01:37:17.693 ', '2019-07-05 01:37:17.693 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('永生花', 8, '2019-07-05 01:37:17.695 ', '2019-07-05 01:37:17.695 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('带有婴儿粪便的纸尿裤', 8, '2019-07-05 01:37:17.698 ', '2019-07-05 01:37:17.698 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑封袋', 8, '2019-07-05 01:37:17.702 ', '2019-07-05 01:37:17.702 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('圆珠笔芯', 8, '2019-07-05 01:37:17.704 ', '2019-07-05 01:37:17.704 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('面膜外层纸', 8, '2019-07-05 01:37:17.709 ', '2019-07-05 01:37:17.709 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('袋泡茶', 8, '2019-07-05 01:37:17.726 ', '2019-07-05 01:37:17.726 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料花', 8, '2019-07-05 01:37:17.732 ', '2019-07-05 01:37:17.732 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('冰箱贴', 8, '2019-07-05 01:37:17.733 ', '2019-07-05 01:37:17.733 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('假睫毛胶水', 8, '2019-07-05 01:37:17.735 ', '2019-07-05 01:37:17.735 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('洗碗布', 8, '2019-07-05 01:37:17.736 ', '2019-07-05 01:37:17.736 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电话卡', 8, '2019-07-05 01:37:17.739 ', '2019-07-05 01:37:17.739 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('手机壳', 8, '2019-07-05 01:37:17.744 ', '2019-07-05 01:37:17.744 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('面巾纸', 8, '2019-07-05 01:37:17.745 ', '2019-07-05 01:37:17.745 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('泥土', 8, '2019-07-05 01:37:17.759 ', '2019-07-05 01:37:17.759 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('网球', 8, '2019-07-05 01:37:17.763 ', '2019-07-05 01:37:17.763 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('烟灰', 8, '2019-07-05 01:37:17.766 ', '2019-07-05 01:37:17.766 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('毛衣针', 8, '2019-07-05 01:37:17.768 ', '2019-07-05 01:37:17.768 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('护发精油', 8, '2019-07-05 01:37:17.769 ', '2019-07-05 01:37:17.769 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('紫砂壶', 8, '2019-07-05 01:37:17.773 ', '2019-07-05 01:37:17.773 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('防晒喷雾', 8, '2019-07-05 01:37:17.777 ', '2019-07-05 01:37:17.777 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('棉花', 8, '2019-07-05 01:37:17.778 ', '2019-07-05 01:37:17.778 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('寄居蟹', 8, '2019-07-05 01:37:17.797 ', '2019-07-05 01:37:17.797 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水饺包装袋', 8, '2019-07-05 01:37:17.799 ', '2019-07-05 01:37:17.799 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('巧克力包装袋', 8, '2019-07-05 01:37:17.800 ', '2019-07-05 01:37:17.800 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('饼干包装袋', 8, '2019-07-05 01:37:17.802 ', '2019-07-05 01:37:17.802 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('奶嘴', 8, '2019-07-05 01:37:17.822 ', '2019-07-05 01:37:17.822 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('糖纸', 8, '2019-07-05 01:37:17.823 ', '2019-07-05 01:37:17.823 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('胡须', 8, '2019-07-05 01:37:17.824 ', '2019-07-05 01:37:17.824 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('包裹着痰的纸巾', 8, '2019-07-05 01:37:17.825 ', '2019-07-05 01:37:17.825 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('包裹着鼻涕的纸巾', 8, '2019-07-05 01:37:17.826 ', '2019-07-05 01:37:17.826 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('KFC纸盒', 8, '2019-07-05 01:37:17.828 ', '2019-07-05 01:37:17.828 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('麦当劳纸盒', 8, '2019-07-05 01:37:17.829 ', '2019-07-05 01:37:17.829 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牛骨', 8, '2019-07-05 01:37:17.830 ', '2019-07-05 01:37:17.830 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('啤酒瓶盖', 1, '2019-07-05 01:37:17.831 ', '2019-07-13 16:37:19.576 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('糖果皮', 8, '2019-07-05 01:37:17.851 ', '2019-07-05 01:37:17.851 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('包裹着西瓜籽的纸巾', 8, '2019-07-05 01:37:17.853 ', '2019-07-05 01:37:17.853 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('包裹着鼻屎的纸巾', 8, '2019-07-05 01:37:17.854 ', '2019-07-05 01:37:17.854 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('冷饮包装', 8, '2019-07-05 01:37:17.857 ', '2019-07-05 01:37:17.857 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('外卖塑料袋', 8, '2019-07-05 01:37:17.858 ', '2019-07-05 01:37:17.858 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('外卖塑料盒', 8, '2019-07-05 01:37:17.859 ', '2019-07-05 01:37:17.859 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('外卖纸盒', 8, '2019-07-05 01:37:17.860 ', '2019-07-05 01:37:17.860 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('5号电池(无汞)', 8, '2019-07-05 01:37:17.861 ', '2019-07-05 01:37:17.861 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('7号电池(无汞)', 8, '2019-07-05 01:37:17.862 ', '2019-07-05 01:37:17.862 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('湿头发', 8, '2019-07-05 01:37:17.864 ', '2019-07-05 01:37:17.864 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('毛发', 8, '2019-07-05 01:37:17.874 ', '2019-07-05 01:37:17.874 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('一次性手套', 8, '2019-07-05 01:37:17.876 ', '2019-07-05 01:37:17.876 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卸妆膏', 8, '2019-07-05 01:37:17.878 ', '2019-07-05 01:37:17.878 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('手机膜', 8, '2019-07-05 01:37:17.880 ', '2019-07-05 01:37:17.880 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('防霉防蛀片', 8, '2019-07-05 01:37:17.884 ', '2019-07-05 01:37:17.884 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卫生护垫', 8, '2019-07-05 01:37:17.885 ', '2019-07-05 01:37:17.885 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('摩丝罐', 8, '2019-07-05 01:37:17.886 ', '2019-07-05 01:37:17.886 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('厨房手套', 8, '2019-07-05 01:37:17.886 ', '2019-07-05 01:37:17.886 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('沐浴球', 8, '2019-07-05 01:37:17.888 ', '2019-07-05 01:37:18.684 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('耳塞', 8, '2019-07-05 01:37:17.888 ', '2019-07-05 01:37:17.888 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牙线棒', 8, '2019-07-05 01:37:17.892 ', '2019-07-05 01:37:17.892 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('修正液', 8, '2019-07-05 01:37:17.893 ', '2019-07-05 01:37:17.893 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废纸', 8, '2019-07-05 01:37:17.908 ', '2019-07-05 01:37:17.908 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卫生间用纸', 8, '2019-07-05 01:37:17.909 ', '2019-07-05 01:37:17.909 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('陶瓷花瓶', 8, '2019-07-05 01:37:17.910 ', '2019-07-05 01:37:17.910 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('陶瓷花盆', 8, '2019-07-05 01:37:17.911 ', '2019-07-05 01:37:17.911 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('防碎气泡膜', 8, '2019-07-05 01:37:17.912 ', '2019-07-05 01:37:17.912 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('污损塑料袋', 8, '2019-07-05 01:37:17.916 ', '2019-07-05 01:37:17.916 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水晶泥', 8, '2019-07-05 01:37:17.917 ', '2019-07-05 01:37:17.917 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('胶纸', 8, '2019-07-05 01:37:17.917 ', '2019-07-05 01:37:17.917 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('剃须泡沫罐', 8, '2019-07-05 01:37:17.919 ', '2019-07-05 01:37:17.919 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('风油精', 8, '2019-07-05 01:37:17.920 ', '2019-07-05 01:37:17.920 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('奶茶塑料盖', 8, '2019-07-05 01:37:17.921 ', '2019-07-05 01:37:17.921 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('打火机', 8, '2019-07-05 01:37:17.921 ', '2019-07-05 01:37:17.921 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('擦碗布', 8, '2019-07-05 01:37:17.923 ', '2019-07-05 01:37:17.923 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('碱性电池', 8, '2019-07-05 01:37:17.924 ', '2019-07-05 01:37:17.924 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('烧烤锡纸', 8, '2019-07-05 01:37:17.927 ', '2019-07-05 01:37:17.927 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('外卖饭盒', 8, '2019-07-05 01:37:17.928 ', '2019-07-05 01:37:17.928 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('装过湿垃圾的塑料袋', 8, '2019-07-05 01:37:17.937 ', '2019-07-05 01:37:17.937 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纸质外卖盒', 8, '2019-07-05 01:37:17.938 ', '2019-07-05 01:37:17.938 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料外卖盒', 8, '2019-07-05 01:37:17.940 ', '2019-07-05 01:37:17.940 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('马桶刷', 8, '2019-07-05 01:37:17.942 ', '2019-07-05 01:37:17.942 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('狗尿垫', 8, '2019-07-05 01:37:17.944 ', '2019-07-05 01:37:17.944 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('太空沙', 8, '2019-07-05 01:37:17.956 ', '2019-07-05 01:37:17.956 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('带胶制品', 8, '2019-07-05 01:37:17.959 ', '2019-07-05 01:37:17.959 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('竹制品', 8, '2019-07-05 01:37:17.960 ', '2019-07-05 01:37:17.960 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('成分复杂的制品', 8, '2019-07-05 01:37:17.961 ', '2019-07-05 01:37:17.961 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('皮皮虾壳', 8, '2019-07-05 01:37:17.963 ', '2019-07-05 01:37:17.963 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('使用过的安全套', 8, '2019-07-05 01:37:17.965 ', '2019-07-05 01:37:17.965 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('青口贝', 8, '2019-07-05 01:37:17.966 ', '2019-07-05 01:37:17.966 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('碎纸屑', 8, '2019-07-05 01:37:17.967 ', '2019-07-05 01:37:17.967 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('洗头膏', 8, '2019-07-05 01:37:17.968 ', '2019-07-05 01:37:17.968 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('番茄酱包装袋', 8, '2019-07-05 01:37:17.969 ', '2019-07-05 01:37:17.969 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('面纸', 8, '2019-07-05 01:37:17.970 ', '2019-07-05 01:37:17.970 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('身体乳', 8, '2019-07-05 01:37:17.972 ', '2019-07-05 01:37:17.972 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('青草膏', 8, '2019-07-05 01:37:17.973 ', '2019-07-05 01:37:17.973 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('洁面摩丝', 8, '2019-07-05 01:37:17.974 ', '2019-07-05 01:37:17.974 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('一次性塑料勺子', 8, '2019-07-05 01:37:17.976 ', '2019-07-05 01:37:17.976 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('眼线笔', 8, '2019-07-05 01:37:17.977 ', '2019-07-05 01:37:17.977 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('眉粉', 8, '2019-07-05 01:37:17.979 ', '2019-07-05 01:37:17.979 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('沾有油渍的食品包装袋', 8, '2019-07-05 01:37:17.991 ', '2019-07-05 01:37:17.991 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('薯片包装袋', 8, '2019-07-05 01:37:17.992 ', '2019-07-05 01:37:17.992 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('自动铅笔笔芯', 8, '2019-07-05 01:37:17.993 ', '2019-07-05 01:37:17.993 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('香薰球', 8, '2019-07-05 01:37:17.994 ', '2019-07-05 01:37:17.994 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('隐形眼镜护理液', 8, '2019-07-05 01:37:17.997 ', '2019-07-05 01:37:17.997 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('脏卫生巾', 8, '2019-07-05 01:37:17.998 ', '2019-07-05 01:37:17.998 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('湿塑料袋', 8, '2019-07-05 01:37:17.999 ', '2019-07-05 01:37:17.999 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牛骨棒', 8, '2019-07-05 01:37:18.000 ', '2019-07-05 01:37:18.000 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('草纸', 8, '2019-07-05 01:37:18.002 ', '2019-07-05 01:37:18.002 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('雨衣', 8, '2019-07-05 01:37:18.005 ', '2019-07-05 01:37:18.005 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('湿纸巾包装', 8, '2019-07-05 01:37:18.006 ', '2019-07-05 01:37:18.006 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纸饭盒', 8, '2019-07-05 01:37:18.007 ', '2019-07-05 01:37:18.007 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('成人用品', 8, '2019-07-05 01:37:18.008 ', '2019-07-05 01:37:18.008 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('河蚌壳', 8, '2019-07-05 01:37:18.009 ', '2019-07-05 01:37:18.009 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('香肠壳', 8, '2019-07-05 01:37:18.010 ', '2019-07-05 01:37:18.010 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('发夹', 8, '2019-07-05 01:37:18.011 ', '2019-07-05 01:37:18.011 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('发带', 8, '2019-07-05 01:37:18.012 ', '2019-07-05 01:37:18.012 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('驱蚊香片', 8, '2019-07-05 01:37:18.024 ', '2019-07-05 01:37:18.024 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('薯片盒', 8, '2019-07-05 01:37:18.025 ', '2019-07-05 01:37:18.025 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('吸尘器灰尘', 8, '2019-07-05 01:37:18.027 ', '2019-07-05 01:37:18.027 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('粉扑', 8, '2019-07-05 01:37:18.027 ', '2019-07-05 01:37:18.027 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('咖啡胶囊', 8, '2019-07-05 01:37:18.028 ', '2019-07-05 01:37:18.028 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸡毛', 8, '2019-07-05 01:37:18.029 ', '2019-07-05 01:37:18.029 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('安全套包装袋', 8, '2019-07-05 01:37:18.030 ', '2019-07-05 01:37:18.030 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('尿片', 8, '2019-07-05 01:37:18.032 ', '2019-07-05 01:37:18.032 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('冰棒棍', 8, '2019-07-05 01:37:18.035 ', '2019-07-05 01:37:18.035 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('广告颜料', 8, '2019-07-05 01:37:18.035 ', '2019-07-05 01:37:18.035 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('陶泥', 8, '2019-07-05 01:37:18.036 ', '2019-07-05 01:37:18.036 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('猪骨头', 8, '2019-07-05 01:37:18.037 ', '2019-07-05 01:37:18.037 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('使用过的面膜', 8, '2019-07-05 01:37:18.037 ', '2019-07-05 01:37:18.037 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('使用过的卫生巾', 8, '2019-07-05 01:37:18.038 ', '2019-07-05 01:37:18.038 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('喝过的奶茶杯子', 8, '2019-07-05 01:37:18.039 ', '2019-07-05 01:37:18.039 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('高密度碎纸机处理的碎纸', 8, '2019-07-05 01:37:18.040 ', '2019-07-05 01:37:18.040 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('泡面袋', 8, '2019-07-05 01:37:18.041 ', '2019-07-05 01:37:18.041 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('太阳眼镜', 8, '2019-07-05 01:37:18.042 ', '2019-07-05 01:37:18.042 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('美妆蛋', 8, '2019-07-05 01:37:18.043 ', '2019-07-05 01:37:18.043 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('胭脂', 8, '2019-07-05 01:37:18.044 ', '2019-07-05 01:37:18.044 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('油条包装袋', 8, '2019-07-05 01:37:18.052 ', '2019-07-05 01:37:18.052 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('奶茶杯', 8, '2019-07-05 01:37:18.054 ', '2019-07-05 01:37:18.054 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('购物卡', 1, '2019-07-05 01:37:18.057 ', '2019-07-05 01:37:19.543 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('订书机钉', 8, '2019-07-05 01:37:18.059 ', '2019-07-05 01:37:18.059 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('彩泥', 8, '2019-07-05 01:37:18.060 ', '2019-07-05 01:37:18.060 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('冰贴', 8, '2019-07-05 01:37:18.069 ', '2019-07-05 01:37:18.069 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('棒冰棍', 8, '2019-07-05 01:37:18.071 ', '2019-07-05 01:37:18.071 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('香烟头', 8, '2019-07-05 01:37:18.072 ', '2019-07-05 01:37:18.072 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('泡沫饭盒', 8, '2019-07-05 01:37:18.073 ', '2019-07-05 01:37:18.073 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('PH试纸', 8, '2019-07-05 01:37:18.074 ', '2019-07-05 01:37:18.074 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('葡萄酒木塞', 8, '2019-07-05 01:37:18.077 ', '2019-07-05 01:37:18.077 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('包裹着口香糖的纸巾', 8, '2019-07-05 01:37:18.078 ', '2019-07-05 01:37:18.078 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('火腿肠包装纸', 8, '2019-07-05 01:37:18.087 ', '2019-07-05 01:37:18.087 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('艾灸条', 8, '2019-07-05 01:37:18.088 ', '2019-07-05 01:37:18.088 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('保冷剂', 8, '2019-07-05 01:37:18.089 ', '2019-07-05 01:37:18.089 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('草木灰', 8, '2019-07-05 01:37:18.090 ', '2019-07-05 01:37:18.090 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('驱蚊手环', 8, '2019-07-05 01:37:18.092 ', '2019-07-05 01:37:18.092 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('挂耳咖啡', 8, '2019-07-05 01:37:18.094 ', '2019-07-05 01:37:18.094 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('滤挂咖啡', 8, '2019-07-05 01:37:18.104 ', '2019-07-05 01:37:18.104 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('柳絮', 8, '2019-07-05 01:37:18.105 ', '2019-07-05 01:37:18.105 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('洗涤液包装袋', 8, '2019-07-05 01:37:18.106 ', '2019-07-05 01:37:18.106 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('石锅', 8, '2019-07-05 01:37:18.107 ', '2019-07-05 01:37:18.107 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('灭蚊灯', 8, '2019-07-05 01:37:18.108 ', '2019-07-05 01:37:18.108 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('红酒塞', 8, '2019-07-05 01:37:18.111 ', '2019-07-05 01:37:18.111 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('枕巾', 8, '2019-07-05 01:37:18.113 ', '2019-07-05 01:37:18.113 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('1号电池(无汞)', 8, '2019-07-05 01:37:18.114 ', '2019-07-05 01:37:18.114 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电子烟烟弹', 8, '2019-07-05 01:37:18.115 ', '2019-07-05 01:37:18.115 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('陶瓷盘子', 8, '2019-07-05 01:37:18.116 ', '2019-07-05 01:37:18.116 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('榨菜袋', 8, '2019-07-05 01:37:18.120 ', '2019-07-05 01:37:18.120 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卷筒纸', 8, '2019-07-05 01:37:18.121 ', '2019-07-05 01:37:18.121 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('方便面调味包', 8, '2019-07-05 01:37:18.122 ', '2019-07-05 01:37:18.122 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('脱毛膏', 8, '2019-07-05 01:37:18.123 ', '2019-07-05 01:37:18.123 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('三角裤', 8, '2019-07-05 01:37:18.124 ', '2019-07-05 01:37:18.124 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('平角裤', 8, '2019-07-05 01:37:18.125 ', '2019-07-05 01:37:18.125 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('海绵粉扑', 8, '2019-07-05 01:37:18.126 ', '2019-07-05 01:37:18.126 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('一次性竹筷子', 8, '2019-07-05 01:37:18.127 ', '2019-07-05 01:37:18.127 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('碎碗', 8, '2019-07-05 01:37:18.127 ', '2019-07-05 01:37:18.127 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('白板笔', 8, '2019-07-05 01:37:18.130 ', '2019-07-05 01:37:18.130 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('海螺壳', 8, '2019-07-05 01:37:18.151 ', '2019-07-05 01:37:18.151 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('花蛤壳', 8, '2019-07-05 01:37:18.152 ', '2019-07-05 01:37:18.152 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('棉线', 8, '2019-07-05 01:37:18.153 ', '2019-07-05 01:37:18.153 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('糖包', 8, '2019-07-05 01:37:18.154 ', '2019-07-05 01:37:18.154 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鼠标垫', 8, '2019-07-05 01:37:18.155 ', '2019-07-05 01:37:18.155 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('便条贴', 8, '2019-07-05 01:37:18.160 ', '2019-07-05 01:37:18.160 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水果塑料盒', 8, '2019-07-05 01:37:18.161 ', '2019-07-05 01:37:18.161 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('糖浆包', 8, '2019-07-05 01:37:18.169 ', '2019-07-05 01:37:18.169 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('泳镜', 8, '2019-07-05 01:37:18.172 ', '2019-07-05 01:37:18.172 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('粘土', 8, '2019-07-05 01:37:18.174 ', '2019-07-05 01:37:18.804 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('干草', 8, '2019-07-05 01:37:18.175 ', '2019-07-05 01:37:18.591 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('酸奶勺', 8, '2019-07-05 01:37:18.176 ', '2019-07-05 01:37:18.176 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('中药包', 8, '2019-07-05 01:37:18.177 ', '2019-07-05 01:37:18.177 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('猪腿骨', 8, '2019-07-05 01:37:18.178 ', '2019-07-05 01:37:18.178 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('茶叶包', 8, '2019-07-05 01:37:18.179 ', '2019-07-05 01:37:18.179 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('豆浆杯', 8, '2019-07-05 01:37:18.186 ', '2019-07-05 01:37:18.186 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('测血糖针', 8, '2019-07-05 01:37:18.189 ', '2019-07-05 01:37:18.189 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('唇釉', 8, '2019-07-05 01:37:18.190 ', '2019-07-05 01:37:18.190 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('一次性打火机', 8, '2019-07-05 01:37:18.191 ', '2019-07-05 01:37:18.191 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('棒棒糖棒子', 8, '2019-07-05 01:37:18.193 ', '2019-07-05 01:37:18.193 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧内衣', 8, '2019-07-05 01:37:18.194 ', '2019-07-05 01:37:18.194 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牛骨头', 8, '2019-07-05 01:37:18.195 ', '2019-07-05 01:37:18.195 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('冰棒皮', 8, '2019-07-05 01:37:18.196 ', '2019-07-05 01:37:18.196 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('冰棒外包装', 8, '2019-07-05 01:37:18.196 ', '2019-07-05 01:37:18.196 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('滴漏式咖啡', 8, '2019-07-05 01:37:18.211 ', '2019-07-05 01:37:18.211 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('星巴克咖啡杯', 8, '2019-07-05 01:37:18.212 ', '2019-07-05 01:37:18.212 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('星巴克塑料杯', 8, '2019-07-05 01:37:18.213 ', '2019-07-05 01:37:18.213 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('下水道杂物', 8, '2019-07-05 01:37:18.214 ', '2019-07-05 01:37:18.214 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电蚊香液瓶', 8, '2019-07-05 01:37:18.215 ', '2019-07-05 01:37:18.215 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('膨润土猫砂', 8, '2019-07-05 01:37:18.216 ', '2019-07-05 01:37:18.216 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('油污纸', 8, '2019-07-05 01:37:18.217 ', '2019-07-05 01:37:18.217 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('稻草', 8, '2019-07-05 01:37:18.218 ', '2019-07-05 01:37:18.218 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('擦过鼻涕的纸巾', 8, '2019-07-05 01:37:18.218 ', '2019-07-05 01:37:18.218 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('粘毛滚纸', 8, '2019-07-05 01:37:18.219 ', '2019-07-05 01:37:18.219 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('酱油袋', 8, '2019-07-05 01:37:18.221 ', '2019-07-05 01:37:18.221 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('湿海绵', 8, '2019-07-05 01:37:18.225 ', '2019-07-05 01:37:18.225 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('羊大骨', 8, '2019-07-05 01:37:18.226 ', '2019-07-05 01:37:18.226 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料笔杆', 8, '2019-07-05 01:37:18.227 ', '2019-07-05 01:37:18.227 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('过期护肤品', 8, '2019-07-05 01:37:18.239 ', '2019-07-05 01:37:18.239 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('发箍', 8, '2019-07-05 01:37:18.240 ', '2019-07-05 01:37:18.240 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('壁纸', 8, '2019-07-05 01:37:18.241 ', '2019-07-05 01:37:18.241 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('墙纸', 8, '2019-07-05 01:37:18.242 ', '2019-07-05 01:37:18.242 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('薯片袋', 8, '2019-07-05 01:37:18.243 ', '2019-07-05 01:37:18.243 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('脏抹布', 8, '2019-07-05 01:37:18.244 ', '2019-07-05 01:37:18.244 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('润肤乳', 8, '2019-07-05 01:37:18.245 ', '2019-07-05 01:37:18.245 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('脏玻璃瓶', 8, '2019-07-05 01:37:18.246 ', '2019-07-05 01:37:18.246 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('外卖盒子', 8, '2019-07-05 01:37:18.247 ', '2019-07-05 01:37:18.247 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('外卖餐具', 8, '2019-07-05 01:37:18.248 ', '2019-07-05 01:37:18.248 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('调料包', 8, '2019-07-05 01:37:18.252 ', '2019-07-05 01:37:18.252 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('辣条包装袋', 8, '2019-07-05 01:37:18.253 ', '2019-07-05 01:37:18.253 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('储奶袋', 8, '2019-07-05 01:37:18.254 ', '2019-07-05 01:37:18.254 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玉米衣', 8, '2019-07-05 01:37:18.255 ', '2019-07-05 01:37:18.255 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电动牙刷刷头', 8, '2019-07-05 01:37:18.256 ', '2019-07-05 01:37:18.256 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('过期防晒霜', 8, '2019-07-05 01:37:18.257 ', '2019-07-05 01:37:18.257 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料打包盒', 8, '2019-07-05 01:37:18.258 ', '2019-07-05 01:37:18.258 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('透明打包盒', 8, '2019-07-05 01:37:18.259 ', '2019-07-05 01:37:18.259 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('食品密封袋', 8, '2019-07-05 01:37:18.261 ', '2019-07-05 01:37:18.261 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('食品保鲜袋', 8, '2019-07-05 01:37:18.262 ', '2019-07-05 01:37:18.262 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('榛子壳', 8, '2019-07-05 01:37:18.267 ', '2019-07-05 01:37:18.267 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('气垫膜', 8, '2019-07-05 01:37:18.268 ', '2019-07-05 01:37:18.268 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('碧然德过滤芯', 8, '2019-07-05 01:37:18.270 ', '2019-07-05 01:37:18.270 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('粘尘纸', 8, '2019-07-05 01:37:18.270 ', '2019-07-05 01:37:18.270 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('过滤袋', 8, '2019-07-05 01:37:18.271 ', '2019-07-05 01:37:18.271 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('炼乳壳', 8, '2019-07-05 01:37:18.273 ', '2019-07-05 01:37:18.273 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('装蔬菜的塑料袋', 8, '2019-07-05 01:37:18.274 ', '2019-07-05 01:37:18.274 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('脚趾甲', 8, '2019-07-05 01:37:18.275 ', '2019-07-05 01:37:18.275 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('油画刷', 8, '2019-07-05 01:37:18.277 ', '2019-07-05 01:37:18.277 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('墨胆', 8, '2019-07-05 01:37:18.278 ', '2019-07-05 01:37:18.278 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('脏卸妆棉', 8, '2019-07-05 01:37:18.286 ', '2019-07-05 01:37:18.286 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('痘痘贴', 8, '2019-07-05 01:37:18.287 ', '2019-07-05 01:37:18.287 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('甲鱼壳', 8, '2019-07-05 01:37:18.288 ', '2019-07-05 01:37:18.288 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('自热火锅加热包', 8, '2019-07-05 01:37:18.289 ', '2019-07-05 01:37:18.289 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('酸奶杯盖', 8, '2019-07-05 01:37:18.291 ', '2019-07-05 01:37:18.291 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('净化器滤芯', 8, '2019-07-05 01:37:18.293 ', '2019-07-05 01:37:18.293 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纸巾袋', 8, '2019-07-05 01:37:18.294 ', '2019-07-05 01:37:18.294 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('艾灸贴', 8, '2019-07-05 01:37:18.295 ', '2019-07-05 01:37:18.295 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('便纸', 8, '2019-07-05 01:37:18.296 ', '2019-07-05 01:37:18.296 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('双眼皮贴', 8, '2019-07-05 01:37:18.297 ', '2019-07-05 01:37:18.297 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('包裹着猫屎的塑料袋', 8, '2019-07-05 01:37:18.297 ', '2019-07-05 01:37:18.297 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蜡烛包装', 8, '2019-07-05 01:37:18.304 ', '2019-07-05 01:37:18.304 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卫生巾外包装', 8, '2019-07-05 01:37:18.307 ', '2019-07-05 01:37:18.307 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('豆腐盒', 8, '2019-07-05 01:37:18.309 ', '2019-07-05 01:37:18.309 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卫生巾包装袋', 8, '2019-07-05 01:37:18.310 ', '2019-07-05 01:37:18.310 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('海绵蛋', 8, '2019-07-05 01:37:18.311 ', '2019-07-05 01:37:18.311 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('方便面盒', 8, '2019-07-05 01:37:18.312 ', '2019-07-05 01:37:18.312 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纸皮核桃', 8, '2019-07-05 01:37:18.313 ', '2019-07-05 01:37:18.313 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卷筒纸外包装', 8, '2019-07-05 01:37:18.314 ', '2019-07-05 01:37:18.314 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牙签塑料盒', 8, '2019-07-05 01:37:18.319 ', '2019-07-05 01:37:18.319 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('醋包', 8, '2019-07-05 01:37:18.320 ', '2019-07-05 01:37:18.320 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('醋袋', 8, '2019-07-05 01:37:18.321 ', '2019-07-05 01:37:18.321 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('食品塑料盒', 8, '2019-07-05 01:37:18.322 ', '2019-07-05 01:37:18.322 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('仓鼠垫沙', 8, '2019-07-05 01:37:18.323 ', '2019-07-05 01:37:18.323 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('干发巾', 8, '2019-07-05 01:37:18.325 ', '2019-07-05 01:37:18.325 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('喜茶杯', 8, '2019-07-05 01:37:18.326 ', '2019-07-05 01:37:18.326 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('面粉袋', 8, '2019-07-05 01:37:18.327 ', '2019-07-05 01:37:18.327 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('吸管薄膜', 8, '2019-07-05 01:37:18.328 ', '2019-07-05 01:37:18.328 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蟑螂贴', 8, '2019-07-05 01:37:18.329 ', '2019-07-05 01:37:18.329 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('眼贴膜', 8, '2019-07-05 01:37:18.330 ', '2019-07-05 01:37:18.330 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('眼膜', 8, '2019-07-05 01:37:18.331 ', '2019-07-05 01:37:18.331 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鼻贴', 8, '2019-07-05 01:37:18.336 ', '2019-07-05 01:37:18.336 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('去黑头鼻贴', 8, '2019-07-05 01:37:18.338 ', '2019-07-05 01:37:18.338 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('一次性尿布', 8, '2019-07-05 01:37:18.339 ', '2019-07-05 01:37:18.339 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('香烟灰', 8, '2019-07-05 01:37:18.340 ', '2019-07-05 01:37:18.340 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('湿厕纸', 8, '2019-07-05 01:37:18.342 ', '2019-07-05 01:37:18.342 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('烧烤竹签', 8, '2019-07-05 01:37:18.343 ', '2019-07-05 01:37:18.343 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('锡箔餐盒', 8, '2019-07-05 01:37:18.352 ', '2019-07-05 01:37:18.352 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('湿厕纸包装袋', 8, '2019-07-05 01:37:18.353 ', '2019-07-05 01:37:18.374 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('酸奶吸管', 8, '2019-07-05 01:37:18.354 ', '2019-07-05 01:37:18.354 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铅笔芯', 8, '2019-07-05 01:37:18.357 ', '2019-07-05 01:37:18.357 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('地板蜡', 8, '2019-07-05 01:37:18.358 ', '2019-07-05 01:37:18.358 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('粽子包裹绳', 8, '2019-07-05 01:37:18.359 ', '2019-07-05 01:37:18.359 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料咖啡杯', 8, '2019-07-05 01:37:18.360 ', '2019-07-05 01:37:18.360 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('硅藻泥', 8, '2019-07-05 01:37:18.368 ', '2019-07-05 01:37:18.368 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('眼镜盒', 8, '2019-07-05 01:37:18.371 ', '2019-07-05 01:37:18.371 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('逗猫棒', 8, '2019-07-05 01:37:18.372 ', '2019-07-05 01:37:18.372 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('宠物饲料包装袋', 8, '2019-07-05 01:37:18.375 ', '2019-07-05 01:37:18.375 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('滤尘袋', 8, '2019-07-05 01:37:18.376 ', '2019-07-05 01:37:18.376 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纸胶带', 8, '2019-07-05 01:37:18.377 ', '2019-07-05 01:37:18.377 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('膨化食品包装袋', 8, '2019-07-05 01:37:18.379 ', '2019-07-05 01:37:18.379 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('眼部精华胶囊', 8, '2019-07-05 01:37:18.386 ', '2019-07-05 01:37:18.386 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('食品干燥剂', 8, '2019-07-05 01:37:18.387 ', '2019-07-05 01:37:18.387 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纸咖啡杯', 8, '2019-07-05 01:37:18.388 ', '2019-07-05 01:37:18.388 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('空气清新剂罐', 8, '2019-07-05 01:37:18.390 ', '2019-07-05 01:37:18.390 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('空调滤芯', 8, '2019-07-05 01:37:18.391 ', '2019-07-05 01:37:18.391 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('珍珠奶茶杯', 8, '2019-07-05 01:37:18.392 ', '2019-07-05 01:37:18.392 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('早餐奶包装袋', 8, '2019-07-05 01:37:18.393 ', '2019-07-05 01:37:18.393 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('粉底液', 8, '2019-07-05 01:37:18.395 ', '2019-07-05 01:37:18.395 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('墙灰', 8, '2019-07-05 01:37:18.396 ', '2019-07-05 01:37:18.396 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('湿抹布', 8, '2019-07-05 01:37:18.397 ', '2019-07-05 01:37:18.397 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('一次性内裤', 8, '2019-07-05 01:37:18.398 ', '2019-07-05 01:37:18.398 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('生物冰袋', 8, '2019-07-05 01:37:18.399 ', '2019-07-05 01:37:18.399 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('桃子核', 8, '2019-07-05 01:37:18.402 ', '2019-07-05 01:37:18.402 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('陶瓷杯', 8, '2019-07-05 01:37:18.404 ', '2019-07-05 01:37:18.404 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('脏牛奶盒', 8, '2019-07-05 01:37:18.406 ', '2019-07-05 01:37:18.406 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('一次性塑料杯', 8, '2019-07-05 01:37:18.411 ', '2019-07-05 01:37:18.411 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('乐事薯片盒', 8, '2019-07-05 01:37:18.412 ', '2019-07-05 01:37:18.412 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蛋黄酥包装盒', 8, '2019-07-05 01:37:18.419 ', '2019-07-05 01:37:18.419 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('瓷勺', 8, '2019-07-05 01:37:18.424 ', '2019-07-05 01:37:18.424 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('养乐多盖', 8, '2019-07-05 01:37:18.426 ', '2019-07-05 01:37:18.426 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('胶布', 8, '2019-07-05 01:37:18.427 ', '2019-07-05 01:37:18.427 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('一次性洗脸巾', 8, '2019-07-05 01:37:18.428 ', '2019-07-05 01:37:18.428 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('沸石猫砂', 8, '2019-07-05 01:37:18.429 ', '2019-07-05 01:37:18.429 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('早餐塑料袋', 8, '2019-07-05 01:37:18.430 ', '2019-07-05 01:37:18.430 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('豆浆杯盖', 8, '2019-07-05 01:37:18.432 ', '2019-07-05 01:37:18.432 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('口红盒', 8, '2019-07-05 01:37:18.433 ', '2019-07-05 01:37:18.433 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('包裹着猫屎的膨润土猫砂', 8, '2019-07-05 01:37:18.434 ', '2019-07-05 01:37:18.434 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('游泳眼镜', 8, '2019-07-05 01:37:18.435 ', '2019-07-05 01:37:18.435 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('老花眼镜', 8, '2019-07-05 01:37:18.436 ', '2019-07-05 01:37:18.436 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蜡烛塑料模', 8, '2019-07-05 01:37:18.440 ', '2019-07-05 01:37:18.440 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料挂钩', 8, '2019-07-05 01:37:18.441 ', '2019-07-05 01:37:18.441 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('奶粉勺子', 8, '2019-07-05 01:37:18.442 ', '2019-07-05 01:37:18.442 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('减震泡泡膜', 8, '2019-07-05 01:37:18.443 ', '2019-07-05 01:37:18.443 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('擦手纸', 8, '2019-07-05 01:37:18.444 ', '2019-07-05 01:37:18.444 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('奶粉盖', 8, '2019-07-05 01:37:18.447 ', '2019-07-05 01:37:18.447 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水粉颜料', 8, '2019-07-05 01:37:18.448 ', '2019-07-05 01:37:18.448 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('机票', 8, '2019-07-05 01:37:18.449 ', '2019-07-05 01:37:18.836 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('演唱会票', 8, '2019-07-05 01:37:18.453 ', '2019-07-05 01:37:18.453 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('车票', 8, '2019-07-05 01:37:18.454 ', '2019-07-05 01:37:18.454 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('大头钉', 8, '2019-07-05 01:37:18.455 ', '2019-07-05 01:37:18.455 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('热敏纸', 8, '2019-07-05 01:37:18.458 ', '2019-07-05 01:37:18.458 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('不干胶纸', 8, '2019-07-05 01:37:18.460 ', '2019-07-05 01:37:18.460 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('饮料瓶标签', 8, '2019-07-05 01:37:18.461 ', '2019-07-05 01:37:18.461 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('方便面包装袋', 8, '2019-07-05 01:37:18.462 ', '2019-07-05 01:37:18.462 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('标签纸', 8, '2019-07-05 01:37:18.463 ', '2019-07-05 01:37:18.463 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('沙拉袋', 8, '2019-07-05 01:37:18.464 ', '2019-07-05 01:37:18.464 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('快递贴纸', 8, '2019-07-05 01:37:18.465 ', '2019-07-05 01:37:18.465 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('气泡垫', 8, '2019-07-05 01:37:18.469 ', '2019-07-05 01:37:18.469 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废瓷砖', 8, '2019-07-05 01:37:18.470 ', '2019-07-05 01:37:18.470 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水果罐', 8, '2019-07-05 01:37:18.473 ', '2019-07-05 01:37:18.473 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('保湿喷雾', 8, '2019-07-05 01:37:18.474 ', '2019-07-05 01:37:18.474 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('火车票', 8, '2019-07-05 01:37:18.475 ', '2019-07-05 01:37:18.475 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('退烧贴', 8, '2019-07-05 01:37:18.476 ', '2019-07-05 01:37:18.511 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卸妆油瓶', 8, '2019-07-05 01:37:18.477 ', '2019-07-05 01:37:18.477 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水果包装袋', 8, '2019-07-05 01:37:18.490 ', '2019-07-05 01:37:18.490 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('泡面调料包', 8, '2019-07-05 01:37:18.491 ', '2019-07-05 01:37:18.491 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('冻干粉面膜', 8, '2019-07-05 01:37:18.492 ', '2019-07-05 01:37:18.492 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('软膜撕拉面膜', 8, '2019-07-05 01:37:18.494 ', '2019-07-05 01:37:18.494 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卷笔刀', 8, '2019-07-05 01:37:18.495 ', '2019-07-05 01:37:18.520 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('化妆品瓶盖', 8, '2019-07-05 01:37:18.496 ', '2019-07-05 01:37:18.496 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('N次贴', 8, '2019-07-05 01:37:18.497 ', '2019-07-05 01:37:18.497 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纳米海绵', 8, '2019-07-05 01:37:18.498 ', '2019-07-05 01:37:18.498 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('一次性剃须刀片', 8, '2019-07-05 01:37:18.506 ', '2019-07-05 01:37:18.506 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料油壶', 8, '2019-07-05 01:37:18.507 ', '2019-07-05 01:37:18.507 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('眼线液', 8, '2019-07-05 01:37:18.508 ', '2019-07-05 01:37:18.508 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('避孕套包装', 8, '2019-07-05 01:37:18.510 ', '2019-07-05 01:37:18.510 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('兔毛', 8, '2019-07-05 01:37:18.512 ', '2019-07-05 01:37:18.512 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('大龙虾头', 8, '2019-07-05 01:37:18.514 ', '2019-07-05 01:37:18.514 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('一次性塑料鞋套', 8, '2019-07-05 01:37:18.516 ', '2019-07-05 01:37:18.516 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('粽子皮', 8, '2019-07-05 01:37:18.517 ', '2019-07-05 01:37:18.517 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牛皮筋', 8, '2019-07-05 01:37:18.518 ', '2019-07-05 01:37:18.518 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('修眉刀', 8, '2019-07-05 01:37:18.519 ', '2019-07-05 01:37:18.519 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('头绳', 8, '2019-07-05 01:37:18.545 ', '2019-07-05 01:37:18.545 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('艾灸渣', 8, '2019-07-05 01:37:18.546 ', '2019-07-05 01:37:18.546 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牙套', 8, '2019-07-05 01:37:18.549 ', '2019-07-05 01:37:18.549 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料刷子', 8, '2019-07-05 01:37:18.551 ', '2019-07-05 01:37:18.551 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('防蚊手环', 8, '2019-07-05 01:37:18.553 ', '2019-07-05 01:37:18.553 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('搓澡巾', 8, '2019-07-05 01:37:18.555 ', '2019-07-05 01:37:18.712 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('烟丝', 8, '2019-07-05 01:37:18.557 ', '2019-07-05 01:37:18.557 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('方便面叉子', 8, '2019-07-05 01:37:18.558 ', '2019-07-05 01:37:18.558 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('汉堡纸', 8, '2019-07-05 01:37:18.559 ', '2019-07-05 01:37:18.559 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('眼镜布', 8, '2019-07-05 01:37:18.560 ', '2019-07-05 01:37:18.560 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('果冻包装盒', 8, '2019-07-05 01:37:18.561 ', '2019-07-05 01:37:18.561 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('干冰袋', 8, '2019-07-05 01:37:18.562 ', '2019-07-05 01:37:18.562 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('头皮屑', 8, '2019-07-05 01:37:18.563 ', '2019-07-05 01:37:18.563 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('长寿果壳', 8, '2019-07-05 01:37:18.569 ', '2019-07-05 01:37:18.569 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('超市塑料袋', 8, '2019-07-05 01:37:18.570 ', '2019-07-05 01:37:18.570 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('防震膜', 8, '2019-07-05 01:37:18.571 ', '2019-07-05 01:37:18.571 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('羊肉骨头', 8, '2019-07-05 01:37:18.572 ', '2019-07-05 01:37:18.572 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('酱油包装袋', 8, '2019-07-05 01:37:18.574 ', '2019-07-05 01:37:18.574 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('一次性餐具包装', 8, '2019-07-05 01:37:18.576 ', '2019-07-05 01:37:18.576 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('爽身粉', 8, '2019-07-05 01:37:18.577 ', '2019-07-05 01:37:18.577 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('84消毒液瓶', 8, '2019-07-05 01:37:18.577 ', '2019-07-05 01:37:18.577 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('炸鸡包装袋', 8, '2019-07-05 01:37:18.578 ', '2019-07-05 01:37:18.578 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('气泡纸', 8, '2019-07-05 01:37:18.586 ', '2019-07-05 01:37:18.586 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('液体蚊香', 8, '2019-07-05 01:37:18.587 ', '2019-07-05 01:37:18.587 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('织带', 8, '2019-07-05 01:37:18.588 ', '2019-07-05 01:37:18.588 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('液体蚊香瓶', 8, '2019-07-05 01:37:18.589 ', '2019-07-05 01:37:18.589 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卸妆乳瓶', 8, '2019-07-05 01:37:18.592 ', '2019-07-05 01:37:18.592 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('包裹着鸡蛋壳的餐巾纸', 8, '2019-07-05 01:37:18.594 ', '2019-07-05 01:37:18.594 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('气泡袋', 8, '2019-07-05 01:37:18.595 ', '2019-07-05 01:37:18.595 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('条码纸', 8, '2019-07-05 01:37:18.605 ', '2019-07-05 01:37:18.605 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('干草包装袋', 8, '2019-07-05 01:37:18.606 ', '2019-07-05 01:37:18.606 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('猫粮包装袋', 8, '2019-07-05 01:37:18.609 ', '2019-07-05 01:37:18.609 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('香肠竹签', 8, '2019-07-05 01:37:18.611 ', '2019-07-05 01:37:18.611 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('破碎盘子', 8, '2019-07-05 01:37:18.612 ', '2019-07-05 01:37:18.612 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('荷兰猪毛', 8, '2019-07-05 01:37:18.617 ', '2019-07-05 01:37:18.617 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('碳性电池', 8, '2019-07-05 01:37:18.619 ', '2019-07-05 01:37:18.619 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('串串竹签', 8, '2019-07-05 01:37:18.620 ', '2019-07-05 01:37:18.620 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧口罩', 8, '2019-07-05 01:37:18.621 ', '2019-07-05 01:37:18.621 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('扇子', 8, '2019-07-05 01:37:18.622 ', '2019-07-05 01:37:18.622 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('乳垫', 8, '2019-07-05 01:37:18.623 ', '2019-07-05 01:37:18.623 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('吸味剂', 8, '2019-07-05 01:37:18.624 ', '2019-07-05 01:37:18.624 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('烟盒内锡纸', 8, '2019-07-05 01:37:18.625 ', '2019-07-05 01:37:18.625 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧牙刷', 8, '2019-07-05 01:37:18.626 ', '2019-07-05 01:37:18.626 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('马克杯', 8, '2019-07-05 01:37:18.627 ', '2019-07-05 01:37:18.627 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('绿豆包装', 8, '2019-07-05 01:37:18.628 ', '2019-07-05 01:37:18.628 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('菠萝蜜核', 8, '2019-07-05 01:37:18.631 ', '2019-07-05 01:37:18.631 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('日抛', 8, '2019-07-05 01:37:18.634 ', '2019-07-05 01:37:18.634 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牙贴', 8, '2019-07-05 01:37:18.637 ', '2019-07-05 01:37:18.637 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('一次性电子烟', 8, '2019-07-05 01:37:18.638 ', '2019-07-05 01:37:18.638 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('果冻壳', 8, '2019-07-05 01:37:18.639 ', '2019-07-05 01:37:18.639 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('湿面巾纸', 8, '2019-07-05 01:37:18.640 ', '2019-07-05 01:37:18.640 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('购物小票', 8, '2019-07-05 01:37:18.642 ', '2019-07-05 01:37:18.642 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('冰淇淋纸', 8, '2019-07-05 01:37:18.643 ', '2019-07-05 01:37:18.643 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('红茶包', 8, '2019-07-05 01:37:18.644 ', '2019-07-05 01:37:18.644 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('自热包', 8, '2019-07-05 01:37:18.644 ', '2019-07-05 01:37:18.644 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('丙烯颜料', 8, '2019-07-05 01:37:18.645 ', '2019-07-05 01:37:18.645 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('陶瓷烟灰缸', 8, '2019-07-05 01:37:18.651 ', '2019-07-05 01:37:18.651 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('丝瓜筋', 8, '2019-07-05 01:37:18.652 ', '2019-07-05 01:37:18.652 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('带油抹布', 8, '2019-07-05 01:37:18.653 ', '2019-07-05 01:37:18.653 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料牙签', 8, '2019-07-05 01:37:18.654 ', '2019-07-05 01:37:18.654 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸽毛', 8, '2019-07-05 01:37:18.655 ', '2019-07-05 01:37:18.655 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('毛笔', 8, '2019-07-05 01:37:18.656 ', '2019-07-05 01:37:18.656 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('脱酸素剂', 8, '2019-07-05 01:37:18.657 ', '2019-07-05 01:37:18.657 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('消毒棉', 8, '2019-07-05 01:37:18.658 ', '2019-07-05 01:37:18.658 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('油性笔', 8, '2019-07-05 01:37:18.659 ', '2019-07-05 01:37:18.659 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('发卡', 8, '2019-07-05 01:37:18.660 ', '2019-07-05 01:37:18.660 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('防潮袋', 8, '2019-07-05 01:37:18.661 ', '2019-07-05 01:37:18.661 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('刘海夹', 8, '2019-07-05 01:37:18.661 ', '2019-07-05 01:37:18.661 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('饼干袋', 8, '2019-07-05 01:37:18.663 ', '2019-07-05 01:37:18.663 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('浴沙', 8, '2019-07-05 01:37:18.664 ', '2019-07-05 01:37:18.664 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('冷饮包装纸', 8, '2019-07-05 01:37:18.667 ', '2019-07-05 01:37:18.667 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('一次性拖鞋', 8, '2019-07-05 01:37:18.668 ', '2019-07-05 01:37:18.668 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('足浴袋', 8, '2019-07-05 01:37:18.669 ', '2019-07-05 01:37:18.669 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('吸湿剂', 8, '2019-07-05 01:37:18.670 ', '2019-07-05 01:37:18.670 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('洗衣粉袋', 8, '2019-07-05 01:37:18.671 ', '2019-07-05 01:37:18.671 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('化妆品密封塑料膜', 8, '2019-07-05 01:37:18.672 ', '2019-07-05 01:37:18.672 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('湿报纸', 8, '2019-07-05 01:37:18.673 ', '2019-07-05 01:37:18.673 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('婴幼儿纸尿裤', 8, '2019-07-05 01:37:18.674 ', '2019-07-05 01:37:18.674 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('眼镜框', 8, '2019-07-05 01:37:18.675 ', '2019-07-05 01:37:18.675 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('油污湿巾纸', 8, '2019-07-05 01:37:18.676 ', '2019-07-05 01:37:18.676 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('脱氧保鲜剂', 8, '2019-07-05 01:37:18.677 ', '2019-07-05 01:37:18.677 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('关东煮纸杯', 8, '2019-07-05 01:37:18.678 ', '2019-07-05 01:37:18.678 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('碘酒棉球', 8, '2019-07-05 01:37:18.685 ', '2019-07-05 01:37:18.685 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('酒精棉球', 8, '2019-07-05 01:37:18.686 ', '2019-07-05 01:37:18.686 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('珍宝蟹', 8, '2019-07-05 01:37:18.687 ', '2019-07-05 01:37:18.687 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('泡脚袋', 8, '2019-07-05 01:37:18.688 ', '2019-07-05 01:37:18.688 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('一次性便当盒', 8, '2019-07-05 01:37:18.689 ', '2019-07-05 01:37:18.689 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('羊肉串棒', 8, '2019-07-05 01:37:18.692 ', '2019-07-05 01:37:18.692 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('碳包', 8, '2019-07-05 01:37:18.695 ', '2019-07-05 01:37:18.695 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('手机链', 8, '2019-07-05 01:37:18.701 ', '2019-07-05 01:37:18.701 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卤料包', 8, '2019-07-05 01:37:18.702 ', '2019-07-05 01:37:18.702 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('五子棋', 8, '2019-07-05 01:37:18.704 ', '2019-07-05 01:37:18.704 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('化妆镜', 8, '2019-07-05 01:37:18.705 ', '2019-07-05 01:37:18.705 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('香囊', 8, '2019-07-05 01:37:18.706 ', '2019-07-05 01:37:18.706 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料带', 8, '2019-07-05 01:37:18.709 ', '2019-07-05 01:37:18.709 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('测血糖试纸', 8, '2019-07-05 01:37:18.710 ', '2019-07-05 01:37:18.710 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('足贴', 8, '2019-07-05 01:37:18.711 ', '2019-07-05 01:37:18.711 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牛肉骨头', 8, '2019-07-05 01:37:18.712 ', '2019-07-05 01:37:18.712 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('必胜客纸盒', 8, '2019-07-05 01:37:18.718 ', '2019-07-05 01:37:18.718 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('奶茶盖', 8, '2019-07-05 01:37:18.719 ', '2019-07-05 01:37:18.719 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('隐形眼镜盒', 8, '2019-07-05 01:37:18.721 ', '2019-07-05 01:37:18.721 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('酒精棉片', 8, '2019-07-05 01:37:18.722 ', '2019-07-05 01:37:18.722 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('光碟包', 8, '2019-07-05 01:37:18.723 ', '2019-07-05 01:37:18.723 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('烤串棒', 8, '2019-07-05 01:37:18.724 ', '2019-07-05 01:37:18.724 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('棒冰包装袋', 8, '2019-07-05 01:37:18.725 ', '2019-07-05 01:37:18.725 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('湿卫生纸', 8, '2019-07-05 01:37:18.726 ', '2019-07-05 01:37:18.726 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('席子', 8, '2019-07-05 01:37:18.727 ', '2019-07-05 01:37:18.727 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('竹炭包', 8, '2019-07-05 01:37:18.728 ', '2019-07-05 01:37:18.728 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('园艺土', 8, '2019-07-05 01:37:18.728 ', '2019-07-05 01:37:18.728 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牛排包装', 8, '2019-07-05 01:37:18.734 ', '2019-07-05 01:37:18.734 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蔬菜包装袋', 8, '2019-07-05 01:37:18.735 ', '2019-07-05 01:37:18.735 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('烫发剂壳', 8, '2019-07-05 01:37:18.736 ', '2019-07-05 01:37:18.736 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('瑞幸咖啡杯', 8, '2019-07-05 01:37:18.737 ', '2019-07-05 01:37:18.737 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('厨房纸巾', 8, '2019-07-05 01:37:18.738 ', '2019-07-05 01:37:18.738 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料糖纸', 8, '2019-07-05 01:37:18.739 ', '2019-07-05 01:37:18.739 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纸巾外包装', 8, '2019-07-05 01:37:18.741 ', '2019-07-05 01:37:18.741 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卫生卷纸', 8, '2019-07-05 01:37:18.743 ', '2019-07-05 01:37:18.743 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('全棉时代纸巾', 8, '2019-07-05 01:37:18.745 ', '2019-07-05 01:37:18.745 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('雪糕棍', 8, '2019-07-05 01:37:18.751 ', '2019-07-05 01:37:18.751 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卫生棒', 8, '2019-07-05 01:37:18.752 ', '2019-07-05 01:37:18.752 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('防蚊贴', 8, '2019-07-05 01:37:18.753 ', '2019-07-05 01:37:18.753 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('湿纸巾包装袋', 8, '2019-07-05 01:37:18.753 ', '2019-07-05 01:37:18.753 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('腋毛', 8, '2019-07-05 01:37:18.754 ', '2019-07-05 01:37:18.754 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('胡渣', 8, '2019-07-05 01:37:18.755 ', '2019-07-05 01:37:18.755 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('面条包装袋', 8, '2019-07-05 01:37:18.756 ', '2019-07-05 01:37:18.756 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('魔芋粉包装袋', 8, '2019-07-05 01:37:18.757 ', '2019-07-05 01:37:18.757 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('清凉贴', 8, '2019-07-05 01:37:18.759 ', '2019-07-05 01:37:18.759 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('固体清香剂', 8, '2019-07-05 01:37:18.761 ', '2019-07-05 01:37:18.761 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('腮红', 8, '2019-07-05 01:37:18.761 ', '2019-07-05 01:37:18.761 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('轻质彩泥', 8, '2019-07-05 01:37:18.762 ', '2019-07-05 01:37:18.762 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('巧克力锡纸', 8, '2019-07-05 01:37:18.768 ', '2019-07-05 01:37:18.768 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('橡皮擦', 8, '2019-07-05 01:37:18.771 ', '2019-07-05 01:37:18.771 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('黑板擦', 8, '2019-07-05 01:37:18.772 ', '2019-07-05 01:37:18.772 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('白板擦', 8, '2019-07-05 01:37:18.774 ', '2019-07-05 01:37:18.774 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('碗碎片', 8, '2019-07-05 01:37:18.775 ', '2019-07-05 01:37:18.775 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('湿烟头', 8, '2019-07-05 01:37:18.787 ', '2019-07-05 01:37:18.787 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('清洁抹布', 8, '2019-07-05 01:37:18.790 ', '2019-07-05 01:37:18.790 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('便签纸', 8, '2019-07-05 01:37:18.791 ', '2019-07-05 01:37:18.791 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('泡泡糖', 8, '2019-07-05 01:37:18.792 ', '2019-07-05 01:37:18.792 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('吸油面纸', 8, '2019-07-05 01:37:18.793 ', '2019-07-05 01:37:18.793 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('肉类包装盒', 8, '2019-07-05 01:37:18.793 ', '2019-07-05 01:37:18.793 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('扣子', 8, '2019-07-05 01:37:18.794 ', '2019-07-05 01:37:18.794 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('内衣包装袋', 8, '2019-07-05 01:37:18.795 ', '2019-07-05 01:37:18.795 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('太阳镜', 8, '2019-07-05 01:37:18.796 ', '2019-07-05 01:37:18.796 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('灭蚊片', 8, '2019-07-05 01:37:18.802 ', '2019-07-05 01:37:18.802 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('CD', 8, '2019-07-05 01:37:18.805 ', '2019-07-05 01:37:18.805 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('DVD', 8, '2019-07-05 01:37:18.806 ', '2019-07-05 01:37:18.806 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('混合猫砂', 8, '2019-07-05 01:37:18.807 ', '2019-07-05 01:37:18.807 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水笔芯', 8, '2019-07-05 01:37:18.808 ', '2019-07-05 01:37:18.808 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('键盘清洁胶', 8, '2019-07-05 01:37:18.809 ', '2019-07-05 01:37:18.809 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料夹子', 8, '2019-07-05 01:37:18.810 ', '2019-07-05 01:37:18.810 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('砚台', 8, '2019-07-05 01:37:18.811 ', '2019-07-05 01:37:18.811 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('证件塑料壳', 8, '2019-07-05 01:37:18.812 ', '2019-07-05 01:37:18.812 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('登机牌', 8, '2019-07-05 01:37:18.837 ', '2019-07-05 01:37:18.837 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('竹牙签', 8, '2019-07-05 01:37:18.847 ', '2019-07-05 01:37:18.847 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牛尾骨', 8, '2019-07-05 01:37:18.850 ', '2019-07-05 01:37:18.850 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('湿纸箱', 8, '2019-07-05 01:37:18.851 ', '2019-07-05 01:37:18.851 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('风油精瓶', 8, '2019-07-05 01:37:18.852 ', '2019-07-05 01:37:18.852 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('驱蚊贴', 8, '2019-07-05 01:37:18.853 ', '2019-07-05 01:37:18.853 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('硅胶手环', 8, '2019-07-05 01:37:18.854 ', '2019-07-05 01:37:18.854 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('气垫BB霜', 8, '2019-07-05 01:37:18.855 ', '2019-07-05 01:37:18.855 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('橡皮屑', 8, '2019-07-05 01:37:18.856 ', '2019-07-05 01:37:18.856 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('中药面膜', 8, '2019-07-05 01:37:18.857 ', '2019-07-05 01:37:18.857 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牙刷头', 8, '2019-07-05 01:37:18.858 ', '2019-07-05 01:37:18.858 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牛肉干包装', 8, '2019-07-05 01:37:18.859 ', '2019-07-05 01:37:18.859 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('胸贴', 8, '2019-07-05 01:37:18.860 ', '2019-07-05 01:37:18.860 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牛仔骨', 8, '2019-07-05 01:37:18.860 ', '2019-07-05 01:37:18.860 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('盐包装袋', 8, '2019-07-05 01:37:18.861 ', '2019-07-05 01:37:18.861 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('浴花', 8, '2019-07-05 01:37:18.867 ', '2019-07-05 01:37:18.867 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('扫描仪', 1, '2019-07-05 01:37:18.873 ', '2019-07-05 01:37:18.873 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('投影仪', 1, '2019-07-05 01:37:18.874 ', '2019-07-05 01:37:18.874 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('包装纸', 1, '2019-07-05 01:37:18.887 ', '2019-07-05 01:37:18.887 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('硬纸板', 1, '2019-07-05 01:37:18.890 ', '2019-07-05 01:37:18.890 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纸板箱', 1, '2019-07-05 01:37:18.892 ', '2019-07-05 01:37:18.892 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('包装盒', 1, '2019-07-05 01:37:18.893 ', '2019-07-05 01:37:18.893 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('点心盒', 1, '2019-07-05 01:37:18.894 ', '2019-07-05 01:37:18.894 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纸巾盒', 1, '2019-07-05 01:37:18.896 ', '2019-07-05 01:37:18.896 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牛奶盒', 1, '2019-07-05 01:37:18.897 ', '2019-07-05 01:37:18.897 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('饮料利乐包装', 1, '2019-07-05 01:37:18.898 ', '2019-07-05 01:37:18.898 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('PET塑料瓶', 1, '2019-07-05 01:37:18.899 ', '2019-07-05 01:37:18.899 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('饮料瓶', 1, '2019-07-05 01:37:18.902 ', '2019-07-05 01:37:18.902 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('硬质塑料瓶', 1, '2019-07-05 01:37:18.903 ', '2019-07-05 01:37:18.903 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料盒', 1, '2019-07-05 01:37:18.904 ', '2019-07-05 01:37:18.904 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('冰淇淋盒', 1, '2019-07-05 01:37:18.905 ', '2019-07-05 01:37:18.905 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料杯', 1, '2019-07-05 01:37:18.906 ', '2019-07-05 01:37:18.906 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('酸奶杯', 1, '2019-07-05 01:37:18.908 ', '2019-07-05 01:37:18.908 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('果冻杯', 1, '2019-07-05 01:37:18.908 ', '2019-07-05 01:37:18.908 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('软桶', 1, '2019-07-05 01:37:18.909 ', '2019-07-05 01:37:18.909 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料泡沫', 1, '2019-07-05 01:37:18.910 ', '2019-07-05 01:37:18.910 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('气泡缓冲材料', 1, '2019-07-05 01:37:18.911 ', '2019-07-05 01:37:18.911 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水果网套', 1, '2019-07-05 01:37:18.911 ', '2019-07-05 01:37:18.911 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废弃塑料文具', 1, '2019-07-05 01:37:18.912 ', '2019-07-05 01:37:18.912 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玻璃瓶', 1, '2019-07-05 01:37:18.917 ', '2019-07-05 01:37:18.917 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('碎玻璃片', 1, '2019-07-05 01:37:18.919 ', '2019-07-05 01:37:18.919 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('其他玻璃制品', 1, '2019-07-05 01:37:18.920 ', '2019-07-05 01:37:18.920 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('金属盒', 1, '2019-07-05 01:37:18.924 ', '2019-07-05 01:37:18.924 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('其他金属制品', 1, '2019-07-05 01:37:18.925 ', '2019-07-05 01:37:18.925 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('金属文件柜', 1, '2019-07-05 01:37:18.926 ', '2019-07-05 01:37:18.926 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('沙发', 16, '2019-07-05 01:37:18.928 ', '2019-08-02 00:13:40.988 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('茶几', 16, '2019-07-05 01:37:18.929 ', '2019-08-02 00:10:02.185 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('办公桌', 1, '2019-07-05 01:37:18.934 ', '2019-07-05 01:37:18.934 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('文件柜', 1, '2019-07-05 01:37:18.935 ', '2019-07-05 01:37:18.935 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('椅子', 16, '2019-07-05 01:37:18.936 ', '2019-08-02 00:15:49.263 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('皮带', 1, '2019-07-05 01:37:18.937 ', '2019-07-05 01:37:18.937 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('香水瓶', 1, '2019-07-05 01:37:18.941 ', '2019-07-05 01:37:18.941 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('食品罐头', 1, '2019-07-05 01:37:18.942 ', '2019-07-05 01:37:19.361 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧书包', 1, '2019-07-05 01:37:18.943 ', '2019-07-05 01:37:18.943 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧鞋子', 1, '2019-07-05 01:37:18.951 ', '2019-07-05 01:37:18.951 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧塑料篮子', 1, '2019-07-05 01:37:18.952 ', '2019-07-05 01:37:18.952 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧玩偶', 1, '2019-07-05 01:37:18.953 ', '2019-07-05 01:37:18.953 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧铁锅', 1, '2019-07-05 01:37:18.955 ', '2019-07-05 01:37:18.955 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('不锈钢垃圾桶', 1, '2019-07-05 01:37:18.956 ', '2019-07-05 01:37:18.956 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧帽子', 1, '2019-07-05 01:37:18.959 ', '2019-07-05 01:37:18.959 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧夹子', 1, '2019-07-05 01:37:18.960 ', '2019-07-05 01:37:18.960 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废锁头', 1, '2019-07-05 01:37:18.961 ', '2019-07-05 01:37:18.961 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('雨伞骨架', 1, '2019-07-05 01:37:18.962 ', '2019-07-05 01:37:18.962 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧纸袋', 1, '2019-07-05 01:37:18.963 ', '2019-07-05 01:37:18.963 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纸盒', 1, '2019-07-05 01:37:18.964 ', '2019-07-05 01:37:18.964 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧玩具', 1, '2019-07-05 01:37:18.965 ', '2019-07-05 01:37:18.965 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('办公用纸', 1, '2019-07-05 01:37:18.966 ', '2019-07-05 01:37:19.021 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('广告用纸', 1, '2019-07-05 01:37:18.968 ', '2019-07-05 01:37:18.968 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('暖水瓶', 1, '2019-07-05 01:37:18.969 ', '2019-07-05 01:37:18.969 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废弃衣服', 1, '2019-07-05 01:37:18.970 ', '2019-07-05 01:37:18.970 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('桌布', 1, '2019-07-05 01:37:18.971 ', '2019-07-05 01:37:18.971 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料包装', 1, '2019-07-05 01:37:18.973 ', '2019-07-05 01:37:18.973 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铁皮罐头', 1, '2019-07-05 01:37:18.974 ', '2019-07-05 01:37:18.974 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('报废车辆', 1, '2019-07-05 01:37:18.976 ', '2019-07-05 01:37:18.976 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('家电家具', 1, '2019-07-05 01:37:18.977 ', '2019-07-05 01:37:18.977 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玻璃烟灰缸', 1, '2019-07-05 01:37:18.978 ', '2019-07-05 01:37:18.978 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('泡沫箱', 1, '2019-07-05 01:37:18.985 ', '2019-07-05 01:37:18.985 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('墨水瓶', 1, '2019-07-05 01:37:18.986 ', '2019-07-05 01:37:18.986 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料垃圾桶', 1, '2019-07-05 01:37:18.987 ', '2019-07-05 01:37:18.987 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料饮料杯', 1, '2019-07-05 01:37:18.988 ', '2019-07-05 01:37:18.988 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('吸铁石', 1, '2019-07-05 01:37:18.989 ', '2019-07-05 01:37:19.243 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料假花', 1, '2019-07-05 01:37:18.990 ', '2019-07-05 01:37:18.990 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('指南针', 1, '2019-07-05 01:37:18.991 ', '2019-07-05 01:37:18.991 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('自行车轮胎', 1, '2019-07-05 01:37:18.994 ', '2019-07-05 01:37:18.994 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('袜子', 8, '2019-07-05 01:37:18.996 ', '2019-07-13 16:39:45.341 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('竹签', 1, '2019-07-05 01:37:18.997 ', '2019-07-05 01:37:18.997 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧衣服', 1, '2019-07-05 01:37:18.998 ', '2019-07-05 01:37:18.998 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('轮胎', 1, '2019-07-05 01:37:18.998 ', '2019-07-05 01:37:18.998 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('酸奶盒', 1, '2019-07-05 01:37:18.999 ', '2019-07-05 01:37:18.999 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('钉子', 1, '2019-07-05 01:37:19.000 ', '2019-07-05 01:37:19.234 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('地板砖', 1, '2019-07-05 01:37:19.001 ', '2019-07-05 01:37:19.001 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料壳', 1, '2019-07-05 01:37:19.002 ', '2019-07-05 01:37:19.002 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('护肤品玻璃罐', 1, '2019-07-05 01:37:19.003 ', '2019-07-05 01:37:19.003 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('奶粉罐', 1, '2019-07-05 01:37:19.003 ', '2019-07-05 01:37:19.003 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料瓶瓶盖', 1, '2019-07-05 01:37:19.006 ', '2019-07-05 01:37:19.006 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('锡纸', 8, '2019-07-05 01:37:19.008 ', '2019-07-13 16:39:55.217 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废旧电子产品', 1, '2019-07-05 01:37:19.009 ', '2019-07-05 01:37:19.009 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鞋垫', 1, '2019-07-05 01:37:19.010 ', '2019-07-05 01:37:19.010 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('过滤网', 1, '2019-07-05 01:37:19.011 ', '2019-07-05 01:37:19.011 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('皮鞋', 1, '2019-07-05 01:37:19.018 ', '2019-07-05 01:37:19.018 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('广告纸片', 1, '2019-07-05 01:37:19.022 ', '2019-07-05 01:37:19.022 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('打印纸', 1, '2019-07-05 01:37:19.023 ', '2019-07-05 01:37:19.023 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('菜刀', 1, '2019-07-05 01:37:19.027 ', '2019-07-05 01:37:19.027 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料盆', 1, '2019-07-05 01:37:19.036 ', '2019-07-05 01:37:19.036 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料桶', 1, '2019-07-05 01:37:19.037 ', '2019-07-05 01:37:19.037 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料日用品', 1, '2019-07-05 01:37:19.038 ', '2019-07-05 01:37:19.038 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料餐具', 1, '2019-07-05 01:37:19.039 ', '2019-07-05 01:37:19.039 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料纸', 1, '2019-07-05 01:37:19.042 ', '2019-07-05 01:37:19.042 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('充电装置', 1, '2019-07-05 01:37:19.052 ', '2019-07-05 01:37:19.052 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('砖头', 1, '2019-07-05 01:37:19.057 ', '2019-07-05 01:37:19.057 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水泥砖', 1, '2019-07-05 01:37:19.058 ', '2019-07-05 01:37:19.058 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('矿泉水桶', 1, '2019-07-05 01:37:19.060 ', '2019-07-05 01:37:19.060 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('可乐瓶', 1, '2019-07-05 01:37:19.061 ', '2019-07-05 01:37:19.061 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废旧木柴', 1, '2019-07-05 01:37:19.069 ', '2019-07-05 01:37:19.069 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('保温袋', 1, '2019-07-05 01:37:19.070 ', '2019-07-05 01:37:19.070 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('碎纸', 1, '2019-07-05 01:37:19.071 ', '2019-07-05 01:37:19.071 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铁盒', 1, '2019-07-05 01:37:19.072 ', '2019-07-05 01:37:19.072 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('插线板', 1, '2019-07-05 01:37:19.073 ', '2019-07-05 01:37:19.073 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电风扇', 1, '2019-07-05 01:37:19.074 ', '2019-07-05 01:37:19.074 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水龙头', 1, '2019-07-05 01:37:19.075 ', '2019-07-05 01:37:19.075 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('抗光屏', 1, '2019-07-05 01:37:19.088 ', '2019-07-05 01:37:19.088 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('幕布', 1, '2019-07-05 01:37:19.089 ', '2019-07-05 01:37:19.089 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('地球仪', 1, '2019-07-05 01:37:19.090 ', '2019-07-05 01:37:19.090 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('空气净化器过滤网', 1, '2019-07-05 01:37:19.091 ', '2019-07-05 01:37:19.091 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('化妆品瓶', 1, '2019-07-05 01:37:19.092 ', '2019-07-05 01:37:19.092 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('未被污染的输液瓶', 1, '2019-07-05 01:37:19.095 ', '2019-07-05 01:37:19.095 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('未被污染的输液袋', 1, '2019-07-05 01:37:19.096 ', '2019-07-05 01:37:19.096 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('手机', 1, '2019-07-05 01:37:19.098 ', '2019-07-05 01:37:19.098 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('溜冰鞋', 1, '2019-07-05 01:37:19.103 ', '2019-07-05 01:37:19.103 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废电路板', 1, '2019-07-05 01:37:19.104 ', '2019-07-05 01:37:19.104 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('藤条', 1, '2019-07-05 01:37:19.105 ', '2019-07-05 01:37:19.105 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('棕榈蜡', 1, '2019-07-05 01:37:19.107 ', '2019-07-05 01:37:19.107 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('消毒液瓶', 2, '2019-07-05 01:37:19.108 ', '2019-07-13 16:29:43.817 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('自行车', 1, '2019-07-05 01:37:19.109 ', '2019-07-05 01:37:19.109 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('洗面奶瓶', 1, '2019-07-05 01:37:19.110 ', '2019-07-05 01:37:19.110 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('床垫', 16, '2019-07-05 01:37:19.111 ', '2019-08-02 00:07:56.260 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木板', 1, '2019-07-05 01:37:19.112 ', '2019-07-05 01:37:19.112 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铝箔纸', 1, '2019-07-05 01:37:19.113 ', '2019-07-05 01:37:19.113 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铁制品', 1, '2019-07-05 01:37:19.128 ', '2019-07-05 01:37:19.128 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铜制品', 1, '2019-07-05 01:37:19.130 ', '2019-07-05 01:37:19.130 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('泡沫塑料', 1, '2019-07-05 01:37:19.132 ', '2019-07-05 01:37:19.132 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('雪碧罐', 1, '2019-07-05 01:37:19.134 ', '2019-07-05 01:37:19.134 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废旧小家电', 1, '2019-07-05 01:37:19.135 ', '2019-07-05 01:37:19.135 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卫生纸内芯', 1, '2019-07-05 01:37:19.135 ', '2019-07-05 01:37:19.135 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('可口可乐瓶', 1, '2019-07-05 01:37:19.136 ', '2019-07-05 01:37:19.136 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('笔记本电脑', 1, '2019-07-05 01:37:19.137 ', '2019-07-05 01:37:19.137 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电饭煲', 1, '2019-07-05 01:37:19.138 ', '2019-07-05 01:37:19.138 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料玩具', 1, '2019-07-05 01:37:19.139 ', '2019-07-05 01:37:19.139 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('洗发水瓶', 1, '2019-07-05 01:37:19.140 ', '2019-07-05 01:37:19.140 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('护发素瓶', 1, '2019-07-05 01:37:19.141 ', '2019-07-05 01:37:19.141 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('洗衣液瓶', 1, '2019-07-05 01:37:19.142 ', '2019-07-05 01:37:19.142 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('皮包', 1, '2019-07-05 01:37:19.153 ', '2019-07-05 01:37:19.153 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('食用油桶', 1, '2019-07-05 01:37:19.155 ', '2019-07-05 01:37:19.155 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料衣架', 1, '2019-07-05 01:37:19.159 ', '2019-07-05 01:37:19.159 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铝膜', 1, '2019-07-05 01:37:19.159 ', '2019-07-05 01:37:19.159 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料水管', 1, '2019-07-05 01:37:19.160 ', '2019-07-05 01:37:19.160 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铁管', 1, '2019-07-05 01:37:19.161 ', '2019-07-05 01:37:19.161 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铜管', 1, '2019-07-05 01:37:19.162 ', '2019-07-05 01:37:19.162 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑复钢管', 1, '2019-07-05 01:37:19.167 ', '2019-07-05 01:37:19.167 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铝塑复合管', 1, '2019-07-05 01:37:19.168 ', '2019-07-05 01:37:19.168 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('金属管', 1, '2019-07-05 01:37:19.169 ', '2019-07-05 01:37:19.169 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('红酒瓶', 1, '2019-07-05 01:37:19.171 ', '2019-07-05 01:37:19.171 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('香槟瓶', 1, '2019-07-05 01:37:19.172 ', '2019-07-05 01:37:19.172 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('白酒瓶', 1, '2019-07-05 01:37:19.173 ', '2019-07-05 01:37:19.173 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('可乐瓶瓶盖', 1, '2019-07-05 01:37:19.174 ', '2019-07-05 01:37:19.174 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电动玩具', 1, '2019-07-05 01:37:19.175 ', '2019-07-05 01:37:19.175 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('镜片', 1, '2019-07-05 01:37:19.175 ', '2019-07-05 01:37:19.175 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('照相机', 1, '2019-07-05 01:37:19.176 ', '2019-07-05 01:37:19.176 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料花盆', 1, '2019-07-05 01:37:19.177 ', '2019-07-05 01:37:19.177 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('无纺布手提袋', 1, '2019-07-05 01:37:19.178 ', '2019-07-05 01:37:19.178 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纸箱', 1, '2019-07-05 01:37:19.178 ', '2019-07-05 01:37:19.178 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('iPad', 1, '2019-07-05 01:37:19.179 ', '2019-07-05 01:37:19.179 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('墨汁瓶', 1, '2019-07-05 01:37:19.184 ', '2019-07-05 01:37:19.184 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('化妆水瓶', 1, '2019-07-05 01:37:19.189 ', '2019-07-05 01:37:19.189 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('护肤品瓶', 1, '2019-07-05 01:37:19.190 ', '2019-07-05 01:37:19.190 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('护肤乳液瓶', 1, '2019-07-05 01:37:19.191 ', '2019-07-05 01:37:19.191 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('酱油瓶', 1, '2019-07-05 01:37:19.192 ', '2019-07-05 01:37:19.192 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('钢琴', 16, '2019-07-05 01:37:19.193 ', '2019-08-02 00:08:24.410 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('手链', 1, '2019-07-05 01:37:19.203 ', '2019-07-05 01:37:19.203 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('手镯', 1, '2019-07-05 01:37:19.204 ', '2019-07-05 01:37:19.204 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木头', 1, '2019-07-05 01:37:19.209 ', '2019-07-05 01:37:19.209 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('碎玻璃制品', 1, '2019-07-05 01:37:19.219 ', '2019-07-05 01:37:19.219 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电动牙刷', 1, '2019-07-05 01:37:19.221 ', '2019-07-05 01:37:19.221 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料包装纸盒', 1, '2019-07-05 01:37:19.221 ', '2019-07-05 01:37:19.221 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('金属香炉', 1, '2019-07-05 01:37:19.223 ', '2019-07-05 01:37:19.223 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铅球', 1, '2019-07-05 01:37:19.224 ', '2019-07-05 01:37:19.224 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('脸摩仪', 1, '2019-07-05 01:37:19.225 ', '2019-07-05 01:37:19.225 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('脉动饮料瓶', 1, '2019-07-05 01:37:19.226 ', '2019-07-05 01:37:19.226 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('跑步机', 1, '2019-07-05 01:37:19.227 ', '2019-07-05 01:37:19.227 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('手电筒', 1, '2019-07-05 01:37:19.227 ', '2019-07-05 01:37:19.227 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('螺钉', 1, '2019-07-05 01:37:19.235 ', '2019-07-05 01:37:19.235 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('糖果罐', 1, '2019-07-05 01:37:19.236 ', '2019-07-05 01:37:19.236 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('毛绒玩具', 1, '2019-07-05 01:37:19.237 ', '2019-07-05 01:37:19.237 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('烧水壶', 1, '2019-07-05 01:37:19.241 ', '2019-07-05 01:37:19.241 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电冰箱', 1, '2019-07-05 01:37:19.244 ', '2019-07-05 01:37:19.244 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('洗衣机', 1, '2019-07-05 01:37:19.251 ', '2019-07-05 01:37:19.251 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电烤箱', 1, '2019-07-05 01:37:19.253 ', '2019-07-05 01:37:19.253 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('洗碗机', 1, '2019-07-05 01:37:19.254 ', '2019-07-05 01:37:19.254 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('扫地机器人', 1, '2019-07-05 01:37:19.256 ', '2019-07-05 01:37:19.256 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('面霜瓶', 1, '2019-07-05 01:37:19.259 ', '2019-07-05 01:37:19.259 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('糖果盒', 1, '2019-07-05 01:37:19.269 ', '2019-07-05 01:37:19.269 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电话机', 1, '2019-07-05 01:37:19.270 ', '2019-07-05 01:37:19.704 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('小提琴', 16, '2019-07-05 01:37:19.272 ', '2019-08-02 00:14:53.922 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料架', 1, '2019-07-05 01:37:19.273 ', '2019-07-05 01:37:19.273 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('茶叶罐', 1, '2019-07-05 01:37:19.277 ', '2019-07-05 01:37:19.277 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('酒精瓶', 1, '2019-07-05 01:37:19.286 ', '2019-07-05 01:37:19.286 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('座椅垫', 1, '2019-07-05 01:37:19.287 ', '2019-07-05 01:37:19.287 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蛋挞盒', 1, '2019-07-05 01:37:19.287 ', '2019-07-05 01:37:19.287 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纸质卡片', 1, '2019-07-05 01:37:19.288 ', '2019-07-05 01:37:19.288 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('硅胶玩具', 1, '2019-07-05 01:37:19.290 ', '2019-07-05 01:37:19.290 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('KFC纸袋', 1, '2019-07-05 01:37:19.291 ', '2019-07-05 01:37:19.291 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧报纸', 1, '2019-07-05 01:37:19.303 ', '2019-07-05 01:37:19.303 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('真空压缩袋', 1, '2019-07-05 01:37:19.305 ', '2019-07-05 01:37:19.305 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('螺丝', 1, '2019-07-05 01:37:19.307 ', '2019-07-05 01:37:19.307 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('尼龙袋', 1, '2019-07-05 01:37:19.308 ', '2019-07-05 01:37:19.308 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纸塑铝复合包装', 1, '2019-07-05 01:37:19.319 ', '2019-07-05 01:37:19.319 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('油桶', 1, '2019-07-05 01:37:19.320 ', '2019-07-05 01:37:19.320 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('食品保鲜盒', 1, '2019-07-05 01:37:19.322 ', '2019-07-05 01:37:19.322 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('衣架', 1, '2019-07-05 01:37:19.324 ', '2019-07-05 01:37:19.324 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玻璃放大镜', 1, '2019-07-05 01:37:19.325 ', '2019-07-05 01:37:19.325 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('窗玻璃', 1, '2019-07-05 01:37:19.326 ', '2019-07-05 01:37:19.326 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('刀', 1, '2019-07-05 01:37:19.328 ', '2019-07-05 01:37:19.328 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('螺丝刀', 1, '2019-07-05 01:37:19.329 ', '2019-07-05 01:37:19.329 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('枕头', 1, '2019-07-05 01:37:19.334 ', '2019-07-05 01:37:19.334 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电子血压仪', 1, '2019-07-05 01:37:19.338 ', '2019-07-05 01:37:19.338 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料饭盒', 1, '2019-07-05 01:37:19.339 ', '2019-07-05 01:37:19.339 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木凳', 1, '2019-07-05 01:37:19.340 ', '2019-07-05 01:37:19.340 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木椅', 16, '2019-07-05 01:37:19.341 ', '2019-08-02 00:15:49.260 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('收音机', 1, '2019-07-05 01:37:19.352 ', '2019-07-05 01:37:19.629 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铃铛', 1, '2019-07-05 01:37:19.353 ', '2019-07-05 01:37:19.353 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('棉布', 1, '2019-07-05 01:37:19.354 ', '2019-07-05 01:37:19.354 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('咖啡隔热纸', 1, '2019-07-05 01:37:19.356 ', '2019-07-05 01:37:19.356 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('毛线', 1, '2019-07-05 01:37:19.357 ', '2019-07-05 01:37:19.357 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料梳子', 1, '2019-07-05 01:37:19.358 ', '2019-07-05 01:37:19.358 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧锁', 1, '2019-07-05 01:37:19.360 ', '2019-07-05 01:37:19.360 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纱线手套', 1, '2019-07-05 01:37:19.369 ', '2019-07-05 01:37:19.369 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('不锈钢勺子', 1, '2019-07-05 01:37:19.371 ', '2019-07-05 01:37:19.371 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('乐扣乐扣', 1, '2019-07-05 01:37:19.372 ', '2019-07-05 01:37:19.372 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木质拼板', 1, '2019-07-05 01:37:19.373 ', '2019-07-05 01:37:19.373 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('眼霜罐', 1, '2019-07-05 01:37:19.376 ', '2019-07-05 01:37:19.376 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('马桶盖', 1, '2019-07-05 01:37:19.377 ', '2019-07-05 01:37:19.377 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('饮料瓶盖', 1, '2019-07-05 01:37:19.378 ', '2019-07-05 01:37:19.378 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玻璃锅盖', 1, '2019-07-05 01:37:19.378 ', '2019-07-05 01:37:19.378 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('棉花被', 1, '2019-07-05 01:37:19.379 ', '2019-07-05 01:37:19.379 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('防晒衣', 1, '2019-07-05 01:37:19.380 ', '2019-07-05 01:37:19.380 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('地铁票', 1, '2019-07-05 01:37:19.391 ', '2019-07-05 01:37:19.391 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('脸盆', 1, '2019-07-05 01:37:19.393 ', '2019-07-05 01:37:19.393 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('脚盆', 1, '2019-07-05 01:37:19.394 ', '2019-07-05 01:37:19.394 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('洗脸仪', 1, '2019-07-05 01:37:19.395 ', '2019-07-05 01:37:19.395 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电动剃须刀', 1, '2019-07-05 01:37:19.405 ', '2019-07-05 01:37:19.405 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('充电牙刷', 1, '2019-07-05 01:37:19.406 ', '2019-07-05 01:37:19.406 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电炖锅', 1, '2019-07-05 01:37:19.407 ', '2019-07-05 01:37:19.407 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('高压锅', 1, '2019-07-05 01:37:19.408 ', '2019-07-05 01:37:19.408 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('热水袋', 1, '2019-07-05 01:37:19.409 ', '2019-07-05 01:37:19.409 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('充电热水袋', 1, '2019-07-05 01:37:19.410 ', '2019-07-05 01:37:19.410 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玻璃碎片', 1, '2019-07-05 01:37:19.411 ', '2019-07-05 01:37:19.411 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废钥匙', 1, '2019-07-05 01:37:19.412 ', '2019-07-05 01:37:19.412 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('干净饮料瓶', 1, '2019-07-05 01:37:19.441 ', '2019-07-05 01:37:19.441 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废报纸', 1, '2019-07-05 01:37:19.442 ', '2019-07-05 01:37:19.442 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧被单', 1, '2019-07-05 01:37:19.443 ', '2019-07-05 01:37:19.443 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废旧吸铁石', 1, '2019-07-05 01:37:19.445 ', '2019-07-05 01:37:19.445 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('冰红茶利乐包装', 1, '2019-07-05 01:37:19.446 ', '2019-07-05 01:37:19.446 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('金属瓶盖', 1, '2019-07-05 01:37:19.448 ', '2019-07-05 01:37:19.448 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('香烟盒', 1, '2019-07-05 01:37:19.448 ', '2019-07-05 01:37:19.448 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('香烟壳', 1, '2019-07-05 01:37:19.449 ', '2019-07-05 01:37:19.449 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('金手链', 1, '2019-07-05 01:37:19.451 ', '2019-07-05 01:37:19.451 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('金项链', 1, '2019-07-05 01:37:19.452 ', '2019-07-05 01:37:19.452 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('热水瓶', 1, '2019-07-05 01:37:19.453 ', '2019-07-05 01:37:19.453 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('脚垫', 1, '2019-07-05 01:37:19.454 ', '2019-07-05 01:37:19.454 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('钢化玻璃', 1, '2019-07-05 01:37:19.455 ', '2019-07-05 01:37:19.455 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纸质杯套', 1, '2019-07-05 01:37:19.457 ', '2019-07-05 01:37:19.457 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料杯套', 1, '2019-07-05 01:37:19.458 ', '2019-07-05 01:37:19.458 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('星巴克纸袋', 1, '2019-07-05 01:37:19.459 ', '2019-07-05 01:37:19.459 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木条', 1, '2019-07-05 01:37:19.473 ', '2019-07-05 01:37:19.473 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木棍', 1, '2019-07-05 01:37:19.474 ', '2019-07-05 01:37:19.474 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('簪子', 1, '2019-07-05 01:37:19.476 ', '2019-07-05 01:37:19.476 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鼓棒', 1, '2019-07-05 01:37:19.477 ', '2019-07-05 01:37:19.477 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('奥特曼玩具', 1, '2019-07-05 01:37:19.479 ', '2019-07-05 01:37:19.479 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('洗手液瓶', 1, '2019-07-05 01:37:19.479 ', '2019-07-05 01:37:19.479 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('滑板', 1, '2019-07-05 01:37:19.480 ', '2019-07-05 01:37:19.480 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电源插头', 1, '2019-07-05 01:37:19.482 ', '2019-07-05 01:37:19.482 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('信纸', 1, '2019-07-05 01:37:19.483 ', '2019-07-05 01:37:19.483 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('画框', 1, '2019-07-05 01:37:19.485 ', '2019-07-05 01:37:19.485 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('洗涤液瓶', 1, '2019-07-05 01:37:19.486 ', '2019-07-05 01:37:19.486 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('二手手机', 1, '2019-07-05 01:37:19.486 ', '2019-07-05 01:37:19.486 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电动卷发棒', 1, '2019-07-05 01:37:19.488 ', '2019-07-05 01:37:19.488 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('洗洁精瓶', 1, '2019-07-05 01:37:19.489 ', '2019-07-05 01:37:19.956 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('拖把桶', 1, '2019-07-05 01:37:19.491 ', '2019-07-05 01:37:19.491 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('台布', 1, '2019-07-05 01:37:19.493 ', '2019-07-05 01:37:19.493 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('布艺窗帘', 1, '2019-07-05 01:37:19.494 ', '2019-07-05 01:37:19.494 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('软玻璃', 1, '2019-07-05 01:37:19.495 ', '2019-07-05 01:37:19.495 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水晶板', 1, '2019-07-05 01:37:19.503 ', '2019-07-05 01:37:19.503 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('钨丝灯', 1, '2019-07-05 01:37:19.506 ', '2019-07-05 01:37:19.506 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鲜奶盒', 1, '2019-07-05 01:37:19.508 ', '2019-07-05 01:37:19.508 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('球鞋', 1, '2019-07-05 01:37:19.510 ', '2019-07-05 01:37:19.510 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('草稿本', 1, '2019-07-05 01:37:19.519 ', '2019-07-05 01:37:19.519 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鞋带', 1, '2019-07-05 01:37:19.520 ', '2019-07-05 01:37:19.520 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('干发帽', 1, '2019-07-05 01:37:19.521 ', '2019-07-05 01:37:19.521 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铝箔袋', 1, '2019-07-05 01:37:19.522 ', '2019-07-05 01:37:19.522 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纸质礼品盒', 1, '2019-07-05 01:37:19.525 ', '2019-07-05 01:37:19.525 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('易拉罐拉环', 1, '2019-07-05 01:37:19.525 ', '2019-07-05 01:37:19.525 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('书包', 1, '2019-07-05 01:37:19.527 ', '2019-07-05 01:37:19.527 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铁调羹', 1, '2019-07-05 01:37:19.528 ', '2019-07-05 01:37:19.528 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铁盒子', 1, '2019-07-05 01:37:19.535 ', '2019-07-05 01:37:19.535 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('浴帘', 1, '2019-07-05 01:37:19.537 ', '2019-07-05 01:37:19.537 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('泳帽', 1, '2019-07-05 01:37:19.538 ', '2019-07-05 01:37:19.538 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('泳衣', 1, '2019-07-05 01:37:19.539 ', '2019-07-05 01:37:19.539 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电动保温箱', 1, '2019-07-05 01:37:19.540 ', '2019-07-05 01:37:19.540 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('起钉器', 1, '2019-07-05 01:37:19.541 ', '2019-07-05 01:37:19.541 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('消费卡', 1, '2019-07-05 01:37:19.542 ', '2019-07-05 01:37:19.542 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('步步高学习机', 1, '2019-07-05 01:37:19.555 ', '2019-07-05 01:37:19.555 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料晾衣杆', 1, '2019-07-05 01:37:19.557 ', '2019-07-05 01:37:19.557 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('金属零件', 1, '2019-07-05 01:37:19.558 ', '2019-07-05 01:37:19.558 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('皮夹', 1, '2019-07-05 01:37:19.560 ', '2019-07-05 01:37:19.560 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧布鞋', 1, '2019-07-05 01:37:19.561 ', '2019-07-05 01:37:19.561 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('金子', 1, '2019-07-05 01:37:19.562 ', '2019-07-05 01:37:19.562 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('金器', 1, '2019-07-05 01:37:19.569 ', '2019-07-05 01:37:19.569 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('书本', 1, '2019-07-05 01:37:19.570 ', '2019-07-05 01:37:19.570 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('拉杆箱', 16, '2019-07-05 01:37:19.571 ', '2019-08-02 00:08:21.874 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('棉被', 1, '2019-07-05 01:37:19.572 ', '2019-07-05 01:37:19.572 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('金属钥匙扣', 1, '2019-07-05 01:37:19.574 ', '2019-07-05 01:37:19.574 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('午餐肉罐头', 1, '2019-07-05 01:37:19.575 ', '2019-07-05 01:37:19.575 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('帆布袋', 1, '2019-07-05 01:37:19.577 ', '2019-07-05 01:37:19.577 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('变形金刚', 1, '2019-07-05 01:37:19.578 ', '2019-07-05 01:37:19.578 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('皮质钱包', 1, '2019-07-05 01:37:19.579 ', '2019-07-05 01:37:19.579 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('肯德基纸袋', 1, '2019-07-05 01:37:19.586 ', '2019-07-05 01:37:19.586 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纸牌', 1, '2019-07-05 01:37:19.587 ', '2019-07-05 01:37:19.587 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧拖鞋', 1, '2019-07-05 01:37:19.588 ', '2019-07-05 01:37:19.588 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料酸奶盒', 1, '2019-07-05 01:37:19.589 ', '2019-07-05 01:37:19.589 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('老干妈瓶子', 1, '2019-07-05 01:37:19.591 ', '2019-07-05 01:37:19.591 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('洁厕灵瓶子', 1, '2019-07-05 01:37:19.592 ', '2019-07-05 01:37:19.592 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('耳钉', 1, '2019-07-05 01:37:19.594 ', '2019-07-05 01:37:19.594 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('奥特曼卡片', 1, '2019-07-05 01:37:19.595 ', '2019-07-05 01:37:19.595 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧枕头', 1, '2019-07-05 01:37:19.597 ', '2019-07-05 01:37:19.597 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牛奶瓶', 1, '2019-07-05 01:37:19.599 ', '2019-07-05 01:37:19.599 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('衣服干洗剂瓶', 1, '2019-07-05 01:37:19.600 ', '2019-07-05 01:37:19.600 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('速冻食品保温袋', 1, '2019-07-05 01:37:19.600 ', '2019-07-05 01:37:19.600 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('泡沫保温箱', 1, '2019-07-05 01:37:19.601 ', '2019-07-05 01:37:19.601 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玩具盒', 1, '2019-07-05 01:37:19.602 ', '2019-07-05 01:37:19.602 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玩具塑料盒', 1, '2019-07-05 01:37:19.603 ', '2019-07-05 01:37:19.603 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('矿泉水瓶盖', 1, '2019-07-05 01:37:19.603 ', '2019-07-05 01:37:19.603 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('垃圾箱', 1, '2019-07-05 01:37:19.604 ', '2019-07-05 01:37:19.604 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('太空望远镜', 1, '2019-07-05 01:37:19.606 ', '2019-07-05 01:37:19.606 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铁丝', 1, '2019-07-05 01:37:19.607 ', '2019-07-05 01:37:19.607 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铜丝', 1, '2019-07-05 01:37:19.608 ', '2019-07-05 01:37:19.608 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('金属门吸', 1, '2019-07-05 01:37:19.609 ', '2019-07-05 01:37:19.609 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('吸门器', 1, '2019-07-05 01:37:19.609 ', '2019-07-05 01:37:19.609 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('瑜伽垫', 1, '2019-07-05 01:37:19.610 ', '2019-07-05 01:37:19.610 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧瑜伽垫', 1, '2019-07-05 01:37:19.611 ', '2019-07-05 01:37:19.611 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纸袋子', 1, '2019-07-05 01:37:19.612 ', '2019-07-05 01:37:19.612 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料膜', 1, '2019-07-05 01:37:19.620 ', '2019-07-05 01:37:19.620 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铁罐', 1, '2019-07-05 01:37:19.622 ', '2019-07-05 01:37:19.622 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸡蛋盒', 1, '2019-07-05 01:37:19.623 ', '2019-07-05 01:37:19.623 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('隐形眼镜包装盒', 1, '2019-07-05 01:37:19.624 ', '2019-07-05 01:37:19.624 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('拍拍净瓶罐', 1, '2019-07-05 01:37:19.625 ', '2019-07-05 01:37:19.625 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('喜糖铁盒子', 1, '2019-07-05 01:37:19.626 ', '2019-07-05 01:37:19.626 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废旧报纸', 1, '2019-07-05 01:37:19.627 ', '2019-07-05 01:37:19.627 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('磁带播放器', 1, '2019-07-05 01:37:19.628 ', '2019-07-05 01:37:19.628 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纸质印刷品', 1, '2019-07-05 01:37:19.631 ', '2019-07-05 01:37:19.631 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('排插', 1, '2019-07-05 01:37:19.633 ', '2019-07-05 01:37:19.633 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('星巴克杯托', 1, '2019-07-05 01:37:19.634 ', '2019-07-05 01:37:19.634 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('料酒瓶', 1, '2019-07-05 01:37:19.636 ', '2019-07-05 01:37:19.636 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木质拖把杆', 1, '2019-07-05 01:37:19.637 ', '2019-07-05 01:37:19.637 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('金属拖把杆', 1, '2019-07-05 01:37:19.637 ', '2019-07-05 01:37:19.637 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('小木棍', 1, '2019-07-05 01:37:19.638 ', '2019-07-05 01:37:19.638 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧皮鞋', 1, '2019-07-05 01:37:19.640 ', '2019-07-05 01:37:19.640 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('巴黎水玻璃瓶', 1, '2019-07-05 01:37:19.641 ', '2019-07-05 01:37:19.641 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('自拍杆', 1, '2019-07-05 01:37:19.641 ', '2019-07-05 01:37:19.641 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('置物架', 1, '2019-07-05 01:37:19.642 ', '2019-07-05 01:37:19.642 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('球拍', 1, '2019-07-05 01:37:19.643 ', '2019-07-05 01:37:19.643 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('清洁剂瓶', 1, '2019-07-05 01:37:19.644 ', '2019-07-05 01:37:19.644 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木质玩具', 1, '2019-07-05 01:37:19.645 ', '2019-07-05 01:37:19.645 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('高尔夫球杆', 1, '2019-07-05 01:37:19.652 ', '2019-07-05 01:37:19.652 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铜线', 1, '2019-07-05 01:37:19.653 ', '2019-07-05 01:37:19.653 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('快递纸箱', 1, '2019-07-05 01:37:19.655 ', '2019-07-05 01:37:19.655 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧相机', 1, '2019-07-05 01:37:19.655 ', '2019-07-05 01:37:19.655 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('乐高玩具', 1, '2019-07-05 01:37:19.657 ', '2019-07-05 01:37:19.657 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('棉拖鞋', 1, '2019-07-05 01:37:19.658 ', '2019-07-05 01:37:19.658 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('脏袜子', 1, '2019-07-05 01:37:19.659 ', '2019-07-05 01:37:19.659 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('羽毛球拍', 8, '2019-07-05 01:37:19.660 ', '2019-07-13 16:35:29.810 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('乒乓球拍', 1, '2019-07-05 01:37:19.660 ', '2019-07-05 01:37:19.660 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电子灭蚊拍', 1, '2019-07-05 01:37:19.661 ', '2019-07-05 01:37:19.661 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料瓶盖', 1, '2019-07-05 01:37:19.667 ', '2019-07-05 01:37:19.667 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卷筒纸芯', 1, '2019-07-05 01:37:19.668 ', '2019-07-05 01:37:19.668 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卡纸', 1, '2019-07-05 01:37:19.670 ', '2019-07-05 01:37:19.670 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('奶粉桶', 1, '2019-07-05 01:37:19.671 ', '2019-07-05 01:37:19.671 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玩具塑料包装纸盒', 1, '2019-07-05 01:37:19.672 ', '2019-07-05 01:37:19.672 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('曲奇铁罐', 1, '2019-07-05 01:37:19.673 ', '2019-07-05 01:37:19.673 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蓝罐曲奇盒', 1, '2019-07-05 01:37:19.674 ', '2019-07-05 01:37:19.674 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料标签', 1, '2019-07-05 01:37:19.675 ', '2019-07-05 01:37:19.675 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('保鲜膜带齿盒', 1, '2019-07-05 01:37:19.676 ', '2019-07-05 01:37:19.676 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('内存卡', 1, '2019-07-05 01:37:19.676 ', '2019-07-05 01:37:19.676 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('背包', 1, '2019-07-05 01:37:19.678 ', '2019-07-05 01:37:19.678 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('酸奶玻璃瓶', 1, '2019-07-05 01:37:19.685 ', '2019-07-05 01:37:19.685 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('芯片', 1, '2019-07-05 01:37:19.688 ', '2019-07-05 01:37:19.688 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鞋盒', 1, '2019-07-05 01:37:19.690 ', '2019-07-05 01:37:19.690 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('CPU', 1, '2019-07-05 01:37:19.691 ', '2019-07-05 01:37:19.691 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('漱口水瓶', 1, '2019-07-05 01:37:19.692 ', '2019-07-05 01:37:19.692 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('雨伞伞面', 1, '2019-07-05 01:37:19.693 ', '2019-07-05 01:37:19.693 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电脑机箱', 1, '2019-07-05 01:37:19.694 ', '2019-07-05 01:37:19.694 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料碗', 1, '2019-07-05 01:37:19.695 ', '2019-07-05 01:37:19.695 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玻璃渣', 1, '2019-07-05 01:37:19.705 ', '2019-07-05 01:37:19.705 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('精华玻璃瓶', 1, '2019-07-05 01:37:19.706 ', '2019-07-05 01:37:19.706 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('衣服包装袋', 1, '2019-07-05 01:37:19.707 ', '2019-07-05 01:37:19.707 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('PS4', 1, '2019-07-05 01:37:19.708 ', '2019-07-05 01:37:19.708 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蜂蜜柚子茶玻璃罐', 1, '2019-07-05 01:37:19.709 ', '2019-07-05 01:37:19.709 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('拖线板', 1, '2019-07-05 01:37:19.709 ', '2019-07-05 01:37:19.709 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('包书纸', 1, '2019-07-05 01:37:19.710 ', '2019-07-05 01:37:19.710 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('洁厕液瓶', 1, '2019-07-05 01:37:19.711 ', '2019-07-05 01:37:19.711 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玻璃密封容器', 1, '2019-07-05 01:37:19.711 ', '2019-07-05 01:37:19.711 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蓝牙耳机', 1, '2019-07-05 01:37:19.712 ', '2019-07-05 01:37:19.712 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牛皮纸', 1, '2019-07-05 01:37:19.716 ', '2019-07-05 01:37:19.716 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铅笔盒', 1, '2019-07-05 01:37:19.717 ', '2019-07-05 01:37:19.717 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玻璃电子秤', 1, '2019-07-05 01:37:19.718 ', '2019-07-05 01:37:19.718 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('显示屏', 1, '2019-07-05 01:37:19.721 ', '2019-07-05 01:37:19.721 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蜜蜡', 1, '2019-07-05 01:37:19.722 ', '2019-07-05 01:37:19.722 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('暖壶胆', 1, '2019-07-05 01:37:19.724 ', '2019-07-05 01:37:19.724 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玻璃蜡烛杯', 1, '2019-07-05 01:37:19.725 ', '2019-07-05 01:37:19.725 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('雪弗板', 1, '2019-07-05 01:37:19.726 ', '2019-07-05 01:37:19.726 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('快递纸袋', 1, '2019-07-05 01:37:19.726 ', '2019-07-05 01:37:19.726 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('热水瓶胆', 1, '2019-07-05 01:37:19.727 ', '2019-07-05 01:37:19.727 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木盒子', 1, '2019-07-05 01:37:19.728 ', '2019-07-05 01:37:19.728 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('枕芯', 1, '2019-07-05 01:37:19.739 ', '2019-07-05 01:37:19.739 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧跑鞋', 1, '2019-07-05 01:37:19.740 ', '2019-07-05 01:37:19.740 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('行李箱', 16, '2019-07-05 01:37:19.741 ', '2019-08-02 00:10:55.050 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('麦当劳咖啡杯杯盖(印有可回收标志)', 1, '2019-07-05 01:37:19.742 ', '2019-07-05 01:37:19.742 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('肯德基豆浆杯盖(印有可回收标志)', 1, '2019-07-05 01:37:19.743 ', '2019-07-05 01:37:19.743 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('羽绒服', 1, '2019-07-05 01:37:19.744 ', '2019-07-05 01:37:19.744 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('无纺布包', 1, '2019-07-05 01:37:19.745 ', '2019-07-05 01:37:19.745 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('保温壶', 1, '2019-07-05 01:37:19.751 ', '2019-07-05 01:37:19.751 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('金属晾衣杆', 1, '2019-07-05 01:37:19.752 ', '2019-07-05 01:37:19.752 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('橄榄球', 1, '2019-07-05 01:37:19.754 ', '2019-07-05 01:37:19.754 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料桌布', 1, '2019-07-05 01:37:19.760 ', '2019-07-05 01:37:19.760 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('炒菜铁锅', 1, '2019-07-05 01:37:19.769 ', '2019-07-05 01:37:19.769 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铁衣架', 1, '2019-07-05 01:37:19.771 ', '2019-07-05 01:37:19.771 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('网卡', 1, '2019-07-05 01:37:19.774 ', '2019-07-05 01:37:19.774 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('口香糖塑料盒', 1, '2019-07-05 01:37:19.775 ', '2019-07-05 01:37:19.775 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('美年达饮料瓶', 1, '2019-07-05 01:37:19.776 ', '2019-07-05 01:37:19.776 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('圆规', 1, '2019-07-05 01:37:19.777 ', '2019-07-05 01:37:19.777 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('布鞋套', 1, '2019-07-05 01:37:19.785 ', '2019-07-05 01:37:19.785 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('青铜', 1, '2019-07-05 01:37:19.786 ', '2019-07-05 01:37:19.786 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('皮料', 1, '2019-07-05 01:37:19.788 ', '2019-07-05 01:37:19.788 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电锯', 1, '2019-07-05 01:37:19.791 ', '2019-07-05 01:37:19.791 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('钢尺', 1, '2019-07-05 01:37:19.792 ', '2019-07-05 01:37:19.792 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水槽过滤网', 1, '2019-07-05 01:37:19.793 ', '2019-07-05 01:37:19.793 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('合金筷子', 1, '2019-07-05 01:37:19.802 ', '2019-07-05 01:37:19.802 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('螺丝钉', 1, '2019-07-05 01:37:19.803 ', '2019-07-05 01:37:19.803 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('饮料玻璃瓶', 1, '2019-07-05 01:37:19.806 ', '2019-07-05 01:37:19.806 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玻璃花瓶', 1, '2019-07-05 01:37:19.807 ', '2019-07-05 01:37:19.807 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧剪刀', 1, '2019-07-05 01:37:19.807 ', '2019-07-05 01:37:19.807 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电热水壶', 1, '2019-07-05 01:37:19.817 ', '2019-07-05 01:37:19.817 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('Kindle', 1, '2019-07-05 01:37:19.819 ', '2019-07-05 01:37:19.819 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('榨汁机', 1, '2019-07-05 01:37:19.820 ', '2019-07-05 01:37:19.820 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('搅拌器', 1, '2019-07-05 01:37:19.821 ', '2019-07-05 01:37:19.821 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鱼竿', 1, '2019-07-05 01:37:19.822 ', '2019-07-05 01:37:19.822 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('芭比娃娃', 1, '2019-07-05 01:37:19.823 ', '2019-07-05 01:37:19.823 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料储物箱', 1, '2019-07-05 01:37:19.824 ', '2019-07-05 01:37:19.824 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('脱排油烟机', 1, '2019-07-05 01:37:19.825 ', '2019-07-05 01:37:19.825 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('燃气灶', 1, '2019-07-05 01:37:19.826 ', '2019-07-05 01:37:19.826 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('童鞋', 1, '2019-07-05 01:37:19.827 ', '2019-07-05 01:37:19.827 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('闹铃', 1, '2019-07-05 01:37:19.827 ', '2019-07-05 01:37:19.827 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电水壶', 1, '2019-07-05 01:37:19.834 ', '2019-07-05 01:37:19.834 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旅行箱', 16, '2019-07-05 01:37:19.835 ', '2019-08-02 00:12:08.622 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('饼干盒', 1, '2019-07-05 01:37:19.838 ', '2019-07-05 01:37:19.852 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('首饰盒', 1, '2019-07-05 01:37:19.839 ', '2019-07-05 01:37:19.839 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('味全果汁瓶', 1, '2019-07-05 01:37:19.840 ', '2019-07-05 01:37:19.840 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('榨果汁机', 1, '2019-07-05 01:37:19.841 ', '2019-07-05 01:37:19.841 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('百叶窗', 1, '2019-07-05 01:37:19.843 ', '2019-07-05 01:37:19.843 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('金属鱼钩', 1, '2019-07-05 01:37:19.843 ', '2019-07-05 01:37:19.851 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('橡胶拖鞋', 1, '2019-07-05 01:37:19.854 ', '2019-07-05 01:37:19.854 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('化妆品外包装纸盒', 1, '2019-07-05 01:37:19.856 ', '2019-07-05 01:37:19.856 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电瓶车防晒垫', 1, '2019-07-05 01:37:19.857 ', '2019-07-05 01:37:19.857 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('罐头瓶', 1, '2019-07-05 01:37:19.858 ', '2019-07-05 01:37:19.858 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('环保布质垃圾袋', 1, '2019-07-05 01:37:19.859 ', '2019-07-05 01:37:19.859 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('浴室防滑垫', 1, '2019-07-05 01:37:19.860 ', '2019-07-05 01:37:19.860 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('手机屏', 1, '2019-07-05 01:37:19.869 ', '2019-07-05 01:37:19.869 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('棉签盒', 1, '2019-07-05 01:37:19.870 ', '2019-07-05 01:37:19.870 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('羊毛被', 1, '2019-07-05 01:37:19.874 ', '2019-07-05 01:37:19.874 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('iPhone', 1, '2019-07-05 01:37:19.876 ', '2019-07-05 01:37:19.876 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('翡翠手镯', 1, '2019-07-05 01:37:19.877 ', '2019-07-05 01:37:19.877 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('汽车模型', 1, '2019-07-05 01:37:19.886 ', '2019-07-05 01:37:19.886 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('秋裤', 1, '2019-07-05 01:37:19.887 ', '2019-07-05 01:37:19.887 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铁皮盖', 1, '2019-07-05 01:37:19.888 ', '2019-07-05 01:37:19.888 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('食用油玻璃瓶', 1, '2019-07-05 01:37:19.889 ', '2019-07-05 01:37:19.889 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('奶粉罐铝盖', 1, '2019-07-05 01:37:19.891 ', '2019-07-05 01:37:19.891 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('洗衣液桶', 1, '2019-07-05 01:37:19.892 ', '2019-07-05 01:37:19.892 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('吉他', 1, '2019-07-05 01:37:19.893 ', '2019-07-05 01:37:19.893 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('酱菜瓶', 1, '2019-07-05 01:37:19.901 ', '2019-07-05 01:37:19.901 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('腐乳瓶', 1, '2019-07-05 01:37:19.903 ', '2019-07-05 01:37:19.903 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('维他奶包装', 1, '2019-07-05 01:37:19.903 ', '2019-07-05 01:37:19.903 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('易拉罐盖', 1, '2019-07-05 01:37:19.904 ', '2019-07-05 01:37:19.904 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('指甲刀', 1, '2019-07-05 01:37:19.905 ', '2019-07-05 01:37:19.905 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牙膏盒', 1, '2019-07-05 01:37:19.906 ', '2019-07-05 01:37:19.906 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('搓衣板', 1, '2019-07-05 01:37:19.907 ', '2019-07-05 01:37:19.907 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('咖啡杯套', 1, '2019-07-05 01:37:19.908 ', '2019-07-05 01:37:19.908 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('果酱瓶', 1, '2019-07-05 01:37:19.909 ', '2019-07-05 01:37:19.909 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('佐料瓶', 1, '2019-07-05 01:37:19.910 ', '2019-07-05 01:37:19.910 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('丝绸', 1, '2019-07-05 01:37:19.910 ', '2019-07-05 01:37:19.910 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('毛皮', 1, '2019-07-05 01:37:19.911 ', '2019-07-05 01:37:19.911 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('椰奶盒', 1, '2019-07-05 01:37:19.912 ', '2019-07-05 01:37:19.912 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料文件袋', 1, '2019-07-05 01:37:19.917 ', '2019-07-05 01:37:19.917 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('美肤仪', 1, '2019-07-05 01:37:19.920 ', '2019-07-05 01:37:19.920 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('洁面仪', 1, '2019-07-05 01:37:19.921 ', '2019-07-05 01:37:19.921 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('健身器材', 1, '2019-07-05 01:37:19.923 ', '2019-07-05 01:37:19.923 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纯牛奶纸盒', 1, '2019-07-05 01:37:19.924 ', '2019-07-05 01:37:19.924 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电动刮痧板', 1, '2019-07-05 01:37:19.925 ', '2019-07-05 01:37:19.925 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('大提琴', 1, '2019-07-05 01:37:19.935 ', '2019-07-05 01:37:19.935 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水果刀', 1, '2019-07-05 01:37:19.936 ', '2019-07-05 01:37:19.936 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('丝带', 1, '2019-07-05 01:37:19.938 ', '2019-07-05 01:37:19.938 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料沙漏', 1, '2019-07-05 01:37:19.939 ', '2019-07-05 01:37:19.939 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('手机支撑架', 1, '2019-07-05 01:37:19.940 ', '2019-07-05 01:37:19.940 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('滴露瓶', 1, '2019-07-05 01:37:19.940 ', '2019-07-05 01:37:19.940 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('USB线', 1, '2019-07-05 01:37:19.941 ', '2019-07-05 01:37:19.941 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料拖把杆', 1, '2019-07-05 01:37:19.942 ', '2019-07-05 01:37:19.942 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('番茄酱瓶', 1, '2019-07-05 01:37:19.943 ', '2019-07-05 01:37:19.943 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牛奶塑料瓶', 1, '2019-07-05 01:37:19.944 ', '2019-07-05 01:37:19.944 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧窗帘', 1, '2019-07-05 01:37:19.945 ', '2019-07-05 01:37:19.945 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('椰汁瓶', 1, '2019-07-05 01:37:19.945 ', '2019-07-05 01:37:19.945 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('手机充电宝', 1, '2019-07-05 01:37:19.952 ', '2019-07-05 01:37:19.952 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('手机充电器', 1, '2019-07-05 01:37:19.953 ', '2019-07-05 01:37:19.953 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('凉鞋', 1, '2019-07-05 01:37:19.954 ', '2019-07-05 01:37:19.954 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('节能灯插座', 1, '2019-07-05 01:37:19.955 ', '2019-07-05 01:37:19.955 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('花洒软管', 1, '2019-07-05 01:37:19.957 ', '2019-07-05 01:37:19.957 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('软塑料隔热垫', 1, '2019-07-05 01:37:19.958 ', '2019-07-05 01:37:19.958 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('银行账单', 1, '2019-07-05 01:37:19.970 ', '2019-07-05 01:37:19.970 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('喷火枪', 1, '2019-07-05 01:37:19.972 ', '2019-07-05 01:37:19.972 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('酸奶瓶', 1, '2019-07-05 01:37:19.973 ', '2019-07-05 01:37:19.973 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('打气筒', 1, '2019-07-05 01:37:19.974 ', '2019-07-05 01:37:19.974 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('神仙水瓶', 1, '2019-07-05 01:37:19.974 ', '2019-07-05 01:37:19.974 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料调色盘', 1, '2019-07-05 01:37:19.985 ', '2019-07-05 01:37:19.985 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木勺', 1, '2019-07-05 01:37:19.986 ', '2019-07-05 01:37:19.986 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卷纸内芯', 1, '2019-07-05 01:37:19.987 ', '2019-07-05 01:37:19.987 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卷筒纸内芯', 1, '2019-07-05 01:37:19.988 ', '2019-07-05 01:37:19.988 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('椰奶罐', 1, '2019-07-05 01:37:19.989 ', '2019-07-05 01:37:19.989 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卷纸芯', 1, '2019-07-05 01:37:19.989 ', '2019-07-05 01:37:19.989 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木棒', 1, '2019-07-05 01:37:19.990 ', '2019-07-05 01:37:19.990 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('五金材料', 1, '2019-07-05 01:37:19.991 ', '2019-07-05 01:37:19.991 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料锅铲', 1, '2019-07-05 01:37:19.992 ', '2019-07-05 01:37:19.992 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木质锅铲', 1, '2019-07-05 01:37:19.993 ', '2019-07-05 01:37:19.993 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('牙线盒', 1, '2019-07-05 01:37:19.993 ', '2019-07-05 01:37:19.993 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('乐扣塑料盒', 1, '2019-07-05 01:37:19.994 ', '2019-07-05 01:37:19.994 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('乐扣玻璃盒', 1, '2019-07-05 01:37:19.995 ', '2019-07-05 01:37:19.995 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木质花架', 1, '2019-07-05 01:37:20.001 ', '2019-07-05 01:37:20.001 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('绿茶包装盒', 1, '2019-07-05 01:37:20.003 ', '2019-07-05 01:37:20.003 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电蒸锅', 1, '2019-07-05 01:37:20.004 ', '2019-07-05 01:37:20.004 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('钻戒', 1, '2019-07-05 01:37:20.005 ', '2019-07-05 01:37:20.005 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('银戒指', 1, '2019-07-05 01:37:20.006 ', '2019-07-05 01:37:20.006 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('即冲奶茶包装盒', 1, '2019-07-05 01:37:20.007 ', '2019-07-05 01:37:20.007 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电容', 1, '2019-07-05 01:37:20.008 ', '2019-07-05 01:37:20.008 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电阻', 1, '2019-07-05 01:37:20.008 ', '2019-07-05 01:37:20.008 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('二极管', 1, '2019-07-05 01:37:20.009 ', '2019-07-05 01:37:20.009 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('三极管', 1, '2019-07-05 01:37:20.010 ', '2019-07-05 01:37:20.010 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废食用油瓶', 1, '2019-07-05 01:37:20.011 ', '2019-07-05 01:37:20.011 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('开关', 1, '2019-07-05 01:37:20.011 ', '2019-07-05 01:37:20.029 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸡蛋包装盒', 1, '2019-07-05 01:37:20.012 ', '2019-07-05 01:37:20.012 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('黑板', 16, '2019-07-05 01:37:20.027 ', '2019-08-02 00:08:48.219 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('豆浆机', 1, '2019-07-05 01:37:20.028 ', '2019-07-05 01:37:20.028 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铁罐子', 1, '2019-07-05 01:37:20.030 ', '2019-07-05 01:37:20.030 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('CD塑料盒', 1, '2019-07-05 01:37:20.031 ', '2019-07-05 01:37:20.031 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('香薰玻璃瓶', 1, '2019-07-05 01:37:20.032 ', '2019-07-05 01:37:20.032 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('真皮制品', 1, '2019-07-05 01:37:20.033 ', '2019-07-05 01:37:20.033 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('羊皮制品', 1, '2019-07-05 01:37:20.034 ', '2019-07-05 01:37:20.034 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('皮草制品', 1, '2019-07-05 01:37:20.034 ', '2019-07-05 01:37:20.034 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('化妆品玻璃瓶', 1, '2019-07-05 01:37:20.051 ', '2019-07-05 01:37:20.051 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('帆布鞋', 1, '2019-07-05 01:37:20.056 ', '2019-07-05 01:37:20.056 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('休闲鞋', 1, '2019-07-05 01:37:20.056 ', '2019-07-05 01:37:20.056 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('关东煮隔热杯套', 1, '2019-07-05 01:37:20.057 ', '2019-07-05 01:37:20.057 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('烫衣板', 1, '2019-07-05 01:37:20.059 ', '2019-07-05 01:37:20.059 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废弃药瓶', 2, '2019-07-05 01:37:20.059 ', '2019-07-05 01:37:20.059 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('手机电池', 2, '2019-07-05 01:37:20.068 ', '2019-07-05 01:37:20.068 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废荧光灯管', 2, '2019-07-05 01:37:20.069 ', '2019-07-05 01:37:20.069 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废水银温度计', 2, '2019-07-05 01:37:20.071 ', '2019-07-05 01:37:20.071 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废水银血压计', 2, '2019-07-05 01:37:20.072 ', '2019-07-05 01:37:20.072 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('过期药品', 2, '2019-07-05 01:37:20.073 ', '2019-07-05 01:37:20.073 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废农药', 2, '2019-07-05 01:37:20.075 ', '2019-07-05 01:37:20.075 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('节能灯(含水银)', 2, '2019-07-05 01:37:20.076 ', '2019-07-05 01:37:20.076 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('LED 灯(含水银)', 2, '2019-07-05 01:37:20.083 ', '2019-07-05 01:37:20.083 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('油漆桶', 2, '2019-07-05 01:37:20.085 ', '2019-07-05 01:37:20.085 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('酒精', 2, '2019-07-05 01:37:20.087 ', '2019-07-05 01:37:20.087 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('调色板', 2, '2019-07-05 01:37:20.088 ', '2019-07-05 01:37:20.088 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('过期的胶囊药物', 2, '2019-07-05 01:37:20.089 ', '2019-07-05 01:37:20.089 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('过期药片', 2, '2019-07-05 01:37:20.090 ', '2019-07-05 01:37:20.090 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('医用棉签', 8, '2019-07-05 01:37:20.092 ', '2019-08-02 00:16:30.726 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('医用手套', 2, '2019-07-05 01:37:20.093 ', '2019-07-05 01:37:20.093 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('农药瓶', 2, '2019-07-05 01:37:20.093 ', '2019-07-05 01:37:20.093 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('医用纱布', 2, '2019-07-05 01:37:20.094 ', '2019-07-05 01:37:20.094 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('口服液瓶', 2, '2019-07-05 01:37:20.095 ', '2019-07-05 01:37:20.095 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废弃灯泡', 2, '2019-07-05 01:37:20.102 ', '2019-07-05 01:37:20.102 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('油漆笔', 2, '2019-07-05 01:37:20.104 ', '2019-07-05 01:37:20.104 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('锂电池', 2, '2019-07-05 01:37:20.106 ', '2019-07-05 01:37:20.106 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('生石灰', 2, '2019-07-05 01:37:20.106 ', '2019-07-05 01:37:20.106 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('胶卷底片', 2, '2019-07-05 01:37:20.107 ', '2019-07-05 01:37:20.107 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废矿物油', 2, '2019-07-05 01:37:20.108 ', '2019-07-05 01:37:20.108 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('消毒剂', 2, '2019-07-05 01:37:20.109 ', '2019-07-05 01:37:20.109 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('胶片', 2, '2019-07-05 01:37:20.110 ', '2019-07-05 01:37:20.110 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废血压计', 2, '2019-07-05 01:37:20.111 ', '2019-07-05 01:37:20.111 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废镍镉电池', 2, '2019-07-05 01:37:20.111 ', '2019-07-05 01:37:20.111 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('氧化汞电池', 2, '2019-07-05 01:37:20.112 ', '2019-07-05 01:37:20.112 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('工业胶水', 2, '2019-07-05 01:37:20.116 ', '2019-07-05 01:37:20.116 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('胶合剂', 2, '2019-07-05 01:37:20.117 ', '2019-07-05 01:37:20.117 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('染发剂', 2, '2019-07-05 01:37:20.119 ', '2019-07-05 01:37:20.119 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('染发膏', 2, '2019-07-05 01:37:20.121 ', '2019-07-05 01:37:20.121 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('钮扣电池', 2, '2019-07-05 01:37:20.122 ', '2019-07-05 01:37:20.122 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('打印机墨盒', 2, '2019-07-05 01:37:20.123 ', '2019-07-05 01:37:20.123 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('硒鼓', 2, '2019-07-05 01:37:20.124 ', '2019-07-05 01:37:20.124 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('指甲油瓶子', 2, '2019-07-05 01:37:20.125 ', '2019-07-05 01:37:20.125 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('雷达瓶子', 2, '2019-07-05 01:37:20.125 ', '2019-07-05 01:37:20.125 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料药盒', 2, '2019-07-05 01:37:20.126 ', '2019-07-05 01:37:20.126 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('过期指甲油', 2, '2019-07-05 01:37:20.127 ', '2019-07-05 01:37:20.127 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卸甲膜', 2, '2019-07-05 01:37:20.128 ', '2019-07-05 01:37:20.128 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('医用针管', 2, '2019-07-05 01:37:20.129 ', '2019-07-05 01:37:20.129 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('膏药', 8, '2019-07-05 01:37:20.129 ', '2019-07-13 16:30:16.801 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('药瓶', 2, '2019-07-05 01:37:20.134 ', '2019-07-05 01:37:20.134 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('药包装', 2, '2019-07-05 01:37:20.135 ', '2019-07-05 01:37:20.135 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('咳嗽药水瓶', 2, '2019-07-05 01:37:20.137 ', '2019-07-05 01:37:20.137 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('针头', 2, '2019-07-05 01:37:20.138 ', '2019-07-05 01:37:20.138 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料药瓶', 2, '2019-07-05 01:37:20.141 ', '2019-07-05 01:37:20.141 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('药片包装', 2, '2019-07-05 01:37:20.142 ', '2019-07-05 01:37:20.142 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('药品包装袋', 2, '2019-07-05 01:37:20.142 ', '2019-07-05 01:37:20.142 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('一次性注射器', 2, '2019-07-05 01:37:20.143 ', '2019-07-05 01:37:20.143 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玻璃药瓶', 2, '2019-07-05 01:37:20.153 ', '2019-07-05 01:37:20.153 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('开塞露', 2, '2019-07-05 01:37:20.154 ', '2019-07-05 01:37:20.251 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('板蓝根冲剂', 2, '2019-07-05 01:37:20.155 ', '2019-07-05 01:37:20.155 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('口服液', 2, '2019-07-05 01:37:20.156 ', '2019-07-05 01:37:20.156 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铅酸电池', 2, '2019-07-05 01:37:20.157 ', '2019-07-05 01:37:20.157 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('荧光灯', 2, '2019-07-05 01:37:20.158 ', '2019-07-05 01:37:20.158 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卸甲水', 2, '2019-07-05 01:37:20.160 ', '2019-07-05 01:37:20.160 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水银体温计', 2, '2019-07-05 01:37:20.167 ', '2019-07-05 01:37:20.167 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('X光片', 2, '2019-07-05 01:37:20.171 ', '2019-07-05 01:37:20.171 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('相片底片', 2, '2019-07-05 01:37:20.172 ', '2019-07-05 01:37:20.172 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('深海鱼油', 2, '2019-07-05 01:37:20.174 ', '2019-07-05 01:37:20.174 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('眼药水', 2, '2019-07-05 01:37:20.176 ', '2019-07-05 01:37:20.176 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('笔记本电脑电池', 2, '2019-07-05 01:37:20.187 ', '2019-07-05 01:37:20.187 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('过期感冒药', 2, '2019-07-05 01:37:20.188 ', '2019-07-05 01:37:20.188 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('冻干粉', 2, '2019-07-05 01:37:20.189 ', '2019-07-05 01:37:20.189 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('杀虫子罐', 2, '2019-07-05 01:37:20.190 ', '2019-07-05 01:37:20.190 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('染发手套', 2, '2019-07-05 01:37:20.191 ', '2019-07-05 01:37:20.191 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('钙片', 2, '2019-07-05 01:37:20.193 ', '2019-07-05 01:37:20.193 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('药膏', 2, '2019-07-05 01:37:20.200 ', '2019-07-05 01:37:20.200 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('药膏包装壳', 2, '2019-07-05 01:37:20.201 ', '2019-07-05 01:37:20.201 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('眼药水瓶', 2, '2019-07-05 01:37:20.202 ', '2019-07-05 01:37:20.202 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('药水玻璃瓶', 2, '2019-07-05 01:37:20.203 ', '2019-07-05 01:37:20.203 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('空药瓶', 2, '2019-07-05 01:37:20.205 ', '2019-07-05 01:37:20.205 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('空调清洗消毒液瓶', 2, '2019-07-05 01:37:20.205 ', '2019-07-05 01:37:20.205 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('安神补脑液瓶', 2, '2019-07-05 01:37:20.208 ', '2019-07-05 01:37:20.208 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('蟑螂药', 2, '2019-07-05 01:37:20.208 ', '2019-07-05 01:37:20.208 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('过期西药', 2, '2019-07-05 01:37:20.209 ', '2019-07-05 01:37:20.209 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('药品纸盒', 2, '2019-07-05 01:37:20.219 ', '2019-07-05 01:37:20.219 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('伤筋膏药', 2, '2019-07-05 01:37:20.220 ', '2019-07-05 01:37:20.220 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('伤筋药膏包装', 2, '2019-07-05 01:37:20.221 ', '2019-07-05 01:37:20.221 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('止痛膏', 2, '2019-07-05 01:37:20.222 ', '2019-07-05 01:37:20.222 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纸药盒', 2, '2019-07-05 01:37:20.224 ', '2019-07-05 01:37:20.224 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('除渍剂', 2, '2019-07-05 01:37:20.225 ', '2019-07-05 01:37:20.225 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('西药瓶', 2, '2019-07-05 01:37:20.225 ', '2019-07-05 01:37:20.225 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('保健品瓶子', 2, '2019-07-05 01:37:20.227 ', '2019-07-05 01:37:20.227 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('打印机色带', 2, '2019-07-05 01:37:20.227 ', '2019-07-05 01:37:20.227 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('给药器', 2, '2019-07-05 01:37:20.233 ', '2019-07-05 01:37:20.233 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('松节油', 2, '2019-07-05 01:37:20.234 ', '2019-07-05 01:37:20.234 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('维生素瓶', 2, '2019-07-05 01:37:20.235 ', '2019-07-05 01:37:20.235 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('药液袋', 2, '2019-07-05 01:37:20.236 ', '2019-07-05 01:37:20.236 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('药片铝塑包装', 2, '2019-07-05 01:37:20.237 ', '2019-07-05 01:37:20.237 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('医用注射器', 2, '2019-07-05 01:37:20.238 ', '2019-07-05 01:37:20.238 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('输液瓶', 2, '2019-07-05 01:37:20.239 ', '2019-07-05 01:37:20.239 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('碳粉盒', 2, '2019-07-05 01:37:20.240 ', '2019-07-05 01:37:20.240 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('化学剂桶', 2, '2019-07-05 01:37:20.241 ', '2019-07-05 01:37:20.241 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('胶水桶', 2, '2019-07-05 01:37:20.242 ', '2019-07-05 01:37:20.242 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('马应龙', 2, '2019-07-05 01:37:20.243 ', '2019-07-05 01:37:20.243 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鱼油胶囊', 2, '2019-07-05 01:37:20.243 ', '2019-07-05 01:37:20.243 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('药壶', 2, '2019-07-05 01:37:20.245 ', '2019-07-05 01:37:20.245 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('碘酒瓶', 2, '2019-07-05 01:37:20.246 ', '2019-07-05 01:37:20.246 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('外敷伤药', 2, '2019-07-05 01:37:20.247 ', '2019-07-05 01:37:20.247 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('膏药布', 2, '2019-07-05 01:37:20.253 ', '2019-07-05 01:37:20.253 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('透明塑料药瓶', 2, '2019-07-05 01:37:20.254 ', '2019-07-05 01:37:20.254 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('樟脑丸', 2, '2019-07-05 01:37:20.255 ', '2019-07-05 01:37:20.255 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电灯泡', 2, '2019-07-05 01:37:20.256 ', '2019-07-05 01:37:20.256 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('金霉素眼药膏', 2, '2019-07-05 01:37:20.257 ', '2019-07-05 01:37:20.257 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('咳嗽药片', 2, '2019-07-05 01:37:20.258 ', '2019-07-05 01:37:20.258 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('达克宁药膏', 2, '2019-07-05 01:37:20.259 ', '2019-07-05 01:37:20.259 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('达克宁药膏皮', 2, '2019-07-05 01:37:20.259 ', '2019-07-05 01:37:20.259 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卸甲油', 2, '2019-07-05 01:37:20.260 ', '2019-07-05 01:37:20.260 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('止咳糖浆瓶', 2, '2019-07-05 01:37:20.261 ', '2019-07-05 01:37:20.261 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('痔疮膏', 2, '2019-07-05 01:37:20.262 ', '2019-07-05 01:37:20.262 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('泡腾片', 2, '2019-07-05 01:37:20.270 ', '2019-07-05 01:37:20.270 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('阿胶糕', 4, '2019-07-13 16:27:09.090 ', '2019-07-13 16:27:09.090 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料档案袋', 1, '2019-07-13 16:27:11.173 ', '2019-07-13 16:27:11.173 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纸质档案袋', 1, '2019-07-13 16:27:11.299 ', '2019-07-13 16:27:11.299 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('河蚌', 8, '2019-07-13 16:27:17.131 ', '2019-07-13 16:27:17.131 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('背心', 1, '2019-07-13 16:27:21.137 ', '2019-07-13 16:27:21.137 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('贝壳肉', 4, '2019-07-13 16:27:21.567 ', '2019-07-13 16:27:21.567 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('方便面袋', 8, '2019-07-13 16:27:26.014 ', '2019-07-13 16:27:26.014 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('茶饼', 4, '2019-07-13 16:27:28.751 ', '2019-07-13 16:27:28.751 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玻璃罐', 1, '2019-07-13 16:27:29.235 ', '2019-07-13 16:27:29.235 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铝箔包', 8, '2019-07-13 16:27:30.516 ', '2019-07-13 16:27:30.516 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('锡箔纸', 8, '2019-07-13 16:27:30.728 ', '2019-07-13 16:27:30.728 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('不锈钢杯', 1, '2019-07-13 16:27:32.290 ', '2019-07-13 16:27:32.290 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('餐巾纸', 8, '2019-07-13 16:27:34.751 ', '2019-07-13 16:27:34.751 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('党参', 4, '2019-07-13 16:27:35.169 ', '2019-07-13 16:27:35.169 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('残渣剩饭', 4, '2019-07-13 16:27:35.785 ', '2019-07-13 16:27:35.785 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('草帽', 8, '2019-07-13 16:27:36.635 ', '2019-07-13 16:27:36.635 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电池', 2, '2019-07-13 16:27:44.660 ', '2019-07-13 16:27:44.660 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('干电池', 2, '2019-07-13 16:27:44.780 ', '2019-07-13 16:27:44.780 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料尺', 1, '2019-07-13 16:27:45.434 ', '2019-07-13 16:27:45.434 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('不锈钢尺', 1, '2019-07-13 16:27:45.582 ', '2019-07-13 16:27:45.582 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('毛毛虫', 4, '2019-07-13 16:27:47.158 ', '2019-07-13 16:27:47.158 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('宠物毛发', 8, '2019-07-13 16:27:47.356 ', '2019-07-13 16:27:47.356 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('金属厨具', 1, '2019-07-13 16:27:49.517 ', '2019-07-13 16:27:49.517 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('厨房垃圾袋', 8, '2019-07-13 16:27:49.635 ', '2019-07-13 16:27:49.635 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纯棉靠垫', 1, '2019-07-13 16:27:53.464 ', '2019-07-13 16:27:53.464 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纯棉靠枕', 1, '2019-07-13 16:27:53.604 ', '2019-07-13 16:27:53.604 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('磁盘盒', 1, '2019-07-13 16:27:54.109 ', '2019-07-13 16:27:54.109 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('磁片盒', 1, '2019-07-13 16:27:54.219 ', '2019-07-13 16:27:54.219 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('暖瓶玻璃内胆', 1, '2019-07-13 16:28:01.622 ', '2019-07-13 16:28:01.622 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('打碎的碗', 8, '2019-07-13 16:28:05.439 ', '2019-07-13 16:28:05.439 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鱼的内脏', 4, '2019-07-13 16:28:05.585 ', '2019-07-13 16:28:05.585 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料凳', 1, '2019-07-13 16:28:06.702 ', '2019-07-13 16:28:06.702 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('地瓜皮', 4, '2019-07-13 16:28:08.024 ', '2019-07-13 16:28:08.024 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('快递冰袋', 8, '2019-07-13 16:28:09.493 ', '2019-07-13 16:28:09.493 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('过期糕点', 4, '2019-07-13 16:28:10.220 ', '2019-07-13 16:28:10.220 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('冬笋', 4, '2019-07-13 16:29:41.279 ', '2019-07-13 16:29:41.279 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水银温度计', 2, '2019-07-13 16:29:44.652 ', '2019-07-13 16:29:44.652 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('防晒霜空瓶', 1, '2019-07-13 16:30:01.938 ', '2019-07-13 16:30:01.938 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废花盆', 8, '2019-07-13 16:30:04.489 ', '2019-07-13 16:30:04.489 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废胶片', 2, '2019-07-13 16:30:04.636 ', '2019-07-13 16:30:04.636 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('凤梨', 4, '2019-07-13 16:30:07.718 ', '2019-07-13 16:30:07.718 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('中药敷贴', 8, '2019-07-13 16:30:08.121 ', '2019-07-13 16:30:08.121 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('护肤品玻璃空瓶', 1, '2019-07-13 16:30:08.297 ', '2019-07-13 16:30:08.297 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('护肤品塑料空瓶', 1, '2019-07-13 16:30:08.428 ', '2019-07-13 16:30:08.428 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('护肤霜玻璃空瓶', 1, '2019-07-13 16:30:08.571 ', '2019-07-13 16:30:08.571 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('猪肉脯', 4, '2019-07-13 16:30:10.814 ', '2019-07-13 16:30:10.814 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('可擦复写笔', 8, '2019-07-13 16:30:11.783 ', '2019-07-13 16:30:11.783 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料盖', 1, '2019-07-13 16:30:13.062 ', '2019-07-13 16:30:13.062 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('青菜杆', 4, '2019-07-13 16:30:14.102 ', '2019-07-13 16:30:14.102 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玻璃烟缸', 1, '2019-07-13 16:30:15.819 ', '2019-07-13 16:30:15.819 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('隔离霜空瓶', 1, '2019-07-13 16:30:18.802 ', '2019-07-13 16:30:18.802 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('各类过期药品', 2, '2019-07-13 16:30:19.042 ', '2019-07-13 16:30:19.042 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('金属工具', 1, '2019-07-13 16:30:20.270 ', '2019-07-13 16:30:20.270 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('含汞电池', 2, '2019-07-13 16:30:21.045 ', '2019-07-13 16:30:21.045 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('狗尿布', 8, '2019-07-13 16:30:22.014 ', '2019-07-13 16:30:22.014 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸡骨', 4, '2019-07-13 16:30:23.562 ', '2019-07-13 16:30:23.562 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('挂耳咖啡包', 8, '2019-07-13 16:30:25.229 ', '2019-07-13 16:30:25.229 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铝锅', 1, '2019-07-13 16:30:29.579 ', '2019-07-13 16:30:29.579 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('过滤芯', 8, '2019-07-13 16:30:30.008 ', '2019-07-13 16:30:30.008 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电焊丝', 1, '2019-07-13 16:30:32.158 ', '2019-07-13 16:30:32.158 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木盒', 1, '2019-07-13 16:30:34.449 ', '2019-07-13 16:30:34.449 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('黑木耳', 4, '2019-07-13 16:30:35.888 ', '2019-07-13 16:30:35.888 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('护发素塑料空瓶', 1, '2019-07-13 16:30:40.336 ', '2019-07-13 16:30:40.336 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('精华液玻璃空瓶', 1, '2019-07-13 16:30:41.255 ', '2019-07-13 16:30:41.255 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('精华液塑料空瓶', 1, '2019-07-13 16:30:41.388 ', '2019-07-13 16:30:41.388 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('油画', 8, '2019-07-13 16:30:41.716 ', '2019-07-13 16:30:41.716 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('油画棒', 8, '2019-07-13 16:30:41.855 ', '2019-07-13 16:30:41.855 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('家养花卉', 4, '2019-07-13 16:31:53.693 ', '2019-07-13 16:31:53.693 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木质积木', 1, '2019-07-13 16:32:00.484 ', '2019-07-13 16:32:00.484 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸡骨架', 4, '2019-07-13 16:32:06.886 ', '2019-07-13 16:32:06.886 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('金属衣架', 1, '2019-07-13 16:32:07.018 ', '2019-07-13 16:32:07.018 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('无汞碱性电池', 8, '2019-07-13 16:32:08.202 ', '2019-07-13 16:32:08.202 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('豆角壳', 4, '2019-07-13 16:32:17.059 ', '2019-07-13 16:32:17.059 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('节能灯泡', 2, '2019-07-13 16:32:19.281 ', '2019-07-13 16:32:19.281 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('桔子', 4, '2019-07-13 16:32:19.448 ', '2019-07-13 16:32:19.448 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('洗洁精空瓶', 1, '2019-07-13 16:32:20.028 ', '2019-07-13 16:32:20.028 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('酒精棉', 8, '2019-07-13 16:32:23.392 ', '2019-07-13 16:32:23.392 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('干净的纸杯', 8, '2019-07-13 16:32:24.640 ', '2019-07-13 16:32:24.640 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('净水器滤芯', 8, '2019-07-13 16:32:24.754 ', '2019-07-13 16:32:24.754 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('旧草帽', 8, '2019-07-13 16:32:25.865 ', '2019-07-13 16:32:25.865 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玻璃餐具', 1, '2019-07-13 16:32:28.394 ', '2019-07-13 16:32:28.394 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料卡片', 1, '2019-07-13 16:32:31.729 ', '2019-07-13 16:32:31.729 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('烤肉', 4, '2019-07-13 16:32:34.360 ', '2019-07-13 16:32:34.360 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('乐扣乐扣塑料盒', 1, '2019-07-13 16:32:39.708 ', '2019-07-13 16:32:39.708 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木筷子', 1, '2019-07-13 16:32:41.322 ', '2019-07-13 16:32:41.322 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料筷子', 1, '2019-07-13 16:32:41.437 ', '2019-07-13 16:32:41.437 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('宽粉', 4, '2019-07-13 16:32:41.808 ', '2019-07-13 16:32:41.808 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('金属制菜篮子', 1, '2019-07-13 16:32:46.025 ', '2019-07-13 16:32:46.025 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('烂黄瓜', 4, '2019-07-13 16:32:46.896 ', '2019-07-13 16:32:46.896 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('利乐枕', 1, '2019-07-13 16:32:48.496 ', '2019-07-13 16:32:48.496 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('利乐砖', 1, '2019-07-13 16:32:48.616 ', '2019-07-13 16:32:48.616 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('可乐空罐', 1, '2019-07-13 16:32:48.728 ', '2019-07-13 16:32:48.728 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鱼类', 4, '2019-07-13 16:32:49.641 ', '2019-07-13 16:32:49.641 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('荔枝', 4, '2019-07-13 16:33:29.835 ', '2019-07-13 16:33:29.835 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('长筒连裤袜', 8, '2019-07-13 16:34:40.431 ', '2019-07-13 16:34:40.431 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('护脸霜玻璃空瓶', 1, '2019-07-13 16:34:41.100 ', '2019-07-13 16:34:41.100 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('护脸霜塑料空瓶', 1, '2019-07-13 16:34:41.240 ', '2019-07-13 16:34:41.240 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鸟粮', 4, '2019-07-13 16:34:41.916 ', '2019-07-13 16:34:41.916 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木质晾衣架', 1, '2019-07-13 16:34:42.736 ', '2019-07-13 16:34:42.736 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('不锈钢晾衣杆', 1, '2019-07-13 16:34:43.004 ', '2019-07-13 16:34:43.004 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('过期零食', 4, '2019-07-13 16:34:45.129 ', '2019-07-13 16:34:45.129 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('金属哑铃', 1, '2019-07-13 16:34:45.729 ', '2019-07-13 16:34:45.729 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('榴莲', 8, '2019-07-13 16:34:46.602 ', '2019-07-13 16:34:46.602 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('花露水玻璃空瓶', 1, '2019-07-13 16:34:50.156 ', '2019-07-13 16:34:50.156 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('沐浴露玻璃空瓶', 1, '2019-07-13 16:34:50.316 ', '2019-07-13 16:34:50.316 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('沐浴露塑料空瓶', 1, '2019-07-13 16:34:50.516 ', '2019-07-13 16:34:50.516 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('马甲袋', 8, '2019-07-13 16:34:57.328 ', '2019-07-13 16:34:57.328 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('满天星', 4, '2019-07-13 16:35:00.997 ', '2019-07-13 16:35:00.997 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('话梅核', 4, '2019-07-13 16:35:04.346 ', '2019-07-13 16:35:04.346 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('空灭火器', 1, '2019-07-13 16:35:10.952 ', '2019-07-13 16:35:10.952 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('灭蚊剂瓶', 2, '2019-07-13 16:35:11.135 ', '2019-07-13 16:35:11.135 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('包书膜', 8, '2019-07-13 16:35:13.424 ', '2019-07-13 16:35:13.424 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('磨砂膏塑料空瓶', 1, '2019-07-13 16:35:13.847 ', '2019-07-13 16:35:13.847 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废旧抹布', 8, '2019-07-13 16:35:14.280 ', '2019-07-13 16:35:14.280 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('墨鱼', 4, '2019-07-13 16:35:14.784 ', '2019-07-13 16:35:14.784 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('泡沫餐盒', 8, '2019-07-13 16:35:15.409 ', '2019-07-13 16:35:15.409 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料收纳箱', 1, '2019-07-13 16:35:18.032 ', '2019-07-13 16:35:18.032 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('无纺布收纳箱', 1, '2019-07-13 16:35:18.333 ', '2019-07-13 16:35:18.333 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('奶片', 4, '2019-07-13 16:35:18.732 ', '2019-07-13 16:35:18.732 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('胶囊药片', 2, '2019-07-13 16:35:20.134 ', '2019-07-13 16:35:20.134 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('镉镍电池', 2, '2019-07-13 16:35:25.041 ', '2019-07-13 16:35:25.041 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('镍铝电池', 2, '2019-07-13 16:35:25.315 ', '2019-07-13 16:35:25.315 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('泡菜', 4, '2019-07-13 16:37:16.457 ', '2019-07-13 16:37:16.457 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('杀虫喷雾罐', 2, '2019-07-13 16:37:17.288 ', '2019-07-13 16:37:17.288 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('杀虫喷雾瓶', 2, '2019-07-13 16:37:17.419 ', '2019-07-13 16:37:17.419 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玻璃盆', 1, '2019-07-13 16:37:17.811 ', '2019-07-13 16:37:17.811 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('瓜皮', 4, '2019-07-13 16:37:20.155 ', '2019-07-13 16:37:20.155 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('收银小票', 1, '2019-07-13 16:37:22.577 ', '2019-07-13 16:37:22.577 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('废药品', 2, '2019-07-13 16:37:23.065 ', '2019-07-13 16:37:23.065 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铝瓶', 1, '2019-07-13 16:37:24.152 ', '2019-07-13 16:37:24.152 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('破瓷瓶', 8, '2019-07-13 16:37:25.781 ', '2019-07-13 16:37:25.781 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('过期茶叶', 4, '2019-07-13 16:37:27.175 ', '2019-07-13 16:37:27.175 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('乳胶漆', 2, '2019-07-13 16:37:27.867 ', '2019-07-13 16:37:27.867 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('空煤气罐', 1, '2019-07-13 16:37:29.500 ', '2019-07-13 16:37:29.500 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('彩色铅笔', 8, '2019-07-13 16:37:30.464 ', '2019-07-13 16:37:30.464 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木头铅笔', 8, '2019-07-13 16:37:30.594 ', '2019-07-13 16:37:30.594 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('青草', 4, '2019-07-13 16:37:34.638 ', '2019-07-13 16:37:34.638 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('镍氢电池', 2, '2019-07-13 16:37:34.973 ', '2019-07-13 16:37:34.973 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('装订铁圈', 1, '2019-07-13 16:37:37.241 ', '2019-07-13 16:37:37.241 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('燃气罐空瓶', 1, '2019-07-13 16:37:38.785 ', '2019-07-13 16:37:38.785 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('燃油罐空瓶', 1, '2019-07-13 16:37:38.921 ', '2019-07-13 16:37:38.921 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('染发料瓶', 2, '2019-07-13 16:37:39.383 ', '2019-07-13 16:37:39.383 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('日光灯管', 2, '2019-07-13 16:37:41.740 ', '2019-07-13 16:37:41.740 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('金属制容器', 1, '2019-07-13 16:37:42.659 ', '2019-07-13 16:37:42.659 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('毛绒垫', 1, '2019-07-13 16:37:42.814 ', '2019-07-13 16:37:42.814 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('果肉', 4, '2019-07-13 16:37:43.533 ', '2019-07-13 16:37:43.533 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('润发乳空瓶', 1, '2019-07-13 16:37:45.064 ', '2019-07-13 16:37:45.064 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('润肤霜玻璃空瓶', 1, '2019-07-13 16:37:45.194 ', '2019-07-13 16:37:45.194 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('砂纸', 8, '2019-07-13 16:37:47.764 ', '2019-07-13 16:37:47.764 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('杀虫剂罐', 2, '2019-07-13 16:37:48.072 ', '2019-07-13 16:37:48.072 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('杀虫剂瓶', 2, '2019-07-13 16:37:48.182 ', '2019-07-13 16:37:48.182 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('沙包', 8, '2019-07-13 16:37:48.546 ', '2019-07-13 16:37:48.546 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('防晒霜玻璃空瓶', 1, '2019-07-13 16:37:49.402 ', '2019-07-13 16:37:49.402 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('防晒霜塑料空瓶', 1, '2019-07-13 16:37:49.511 ', '2019-07-13 16:37:49.511 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('山芋皮', 4, '2019-07-13 16:37:49.994 ', '2019-07-13 16:37:49.994 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('剩饭剩菜', 4, '2019-07-13 16:37:56.403 ', '2019-07-13 16:37:56.403 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('风干食品', 4, '2019-07-13 16:37:57.865 ', '2019-07-13 16:37:57.865 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('过期粮食', 4, '2019-07-13 16:37:57.991 ', '2019-07-13 16:37:57.991 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('狗屎纸', 8, '2019-07-13 16:37:58.487 ', '2019-07-13 16:37:58.487 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('过期芝士', 4, '2019-07-13 16:37:59.537 ', '2019-07-13 16:37:59.537 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('手纸', 8, '2019-07-13 16:38:01.870 ', '2019-07-13 16:38:01.870 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('受污染纸张', 8, '2019-07-13 16:38:02.487 ', '2019-07-13 16:38:02.487 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('腐烂蔬菜', 4, '2019-07-13 16:38:03.061 ', '2019-07-13 16:38:03.061 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('金属锅', 1, '2019-07-13 16:38:05.475 ', '2019-07-13 16:38:05.475 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('漱口水塑料空瓶', 1, '2019-07-13 16:38:06.244 ', '2019-07-13 16:38:06.244 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('面霜塑料空瓶', 1, '2019-07-13 16:38:07.076 ', '2019-07-13 16:38:07.076 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('爽肤水玻璃空瓶', 1, '2019-07-13 16:38:07.545 ', '2019-07-13 16:38:07.545 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('爽肤水塑料空瓶', 1, '2019-07-13 16:38:07.661 ', '2019-07-13 16:38:07.661 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('死鱼', 4, '2019-07-13 16:39:21.686 ', '2019-07-13 16:39:21.686 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('速冻饺子包装', 8, '2019-07-13 16:39:23.622 ', '2019-07-13 16:39:23.622 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('酸奶利乐包装盒', 1, '2019-07-13 16:39:24.403 ', '2019-07-13 16:39:24.403 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('碎玻璃', 1, '2019-07-13 16:39:25.510 ', '2019-07-13 16:39:25.510 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('碎瓷片', 8, '2019-07-13 16:39:25.615 ', '2019-07-13 16:39:25.615 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('污损报纸', 8, '2019-07-13 16:39:27.118 ', '2019-07-13 16:39:27.118 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('污损纸盒', 8, '2019-07-13 16:39:27.281 ', '2019-07-13 16:39:27.281 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('太阳能电池', 2, '2019-07-13 16:39:29.962 ', '2019-07-13 16:39:29.962 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('羊毛毯', 1, '2019-07-13 16:39:31.247 ', '2019-07-13 16:39:31.247 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('碎陶瓷', 8, '2019-07-13 16:39:34.919 ', '2019-07-13 16:39:34.919 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('陶瓷刀', 8, '2019-07-13 16:39:35.168 ', '2019-07-13 16:39:35.168 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('田螺肉', 4, '2019-07-13 16:39:37.699 ', '2019-07-13 16:39:37.699 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铁桶', 1, '2019-07-13 16:39:40.082 ', '2019-07-13 16:39:40.082 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纸筒', 1, '2019-07-13 16:39:40.818 ', '2019-07-13 16:39:40.818 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('竹筒', 8, '2019-07-13 16:39:40.956 ', '2019-07-13 16:39:40.956 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('薯片外包装', 8, '2019-07-13 16:39:45.676 ', '2019-07-13 16:39:45.676 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('陶瓷碗', 8, '2019-07-13 16:39:46.851 ', '2019-07-13 16:39:46.851 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('调味品', 4, '2019-07-13 16:39:49.383 ', '2019-07-13 16:39:49.383 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('保温材料', 8, '2019-07-13 16:39:50.467 ', '2019-07-13 16:39:50.467 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('无花果壳', 4, '2019-07-13 16:39:52.890 ', '2019-07-13 16:39:52.890 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('衣物', 1, '2019-07-13 16:39:53.824 ', '2019-07-13 16:39:53.824 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('锡纸盒', 8, '2019-07-13 16:39:55.442 ', '2019-07-13 16:39:55.442 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('竹席', 8, '2019-07-13 16:39:56.295 ', '2019-07-13 16:39:56.295 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('相片', 2, '2019-07-13 16:40:01.979 ', '2019-07-13 16:40:01.979 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('相纸', 2, '2019-07-13 16:40:02.110 ', '2019-07-13 16:40:02.110 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('相片纸', 2, '2019-07-13 16:40:02.218 ', '2019-07-13 16:40:02.218 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('橡胶垫', 8, '2019-07-13 16:40:03.714 ', '2019-07-13 16:40:03.714 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('84消毒液空瓶', 2, '2019-07-13 16:40:04.777 ', '2019-07-13 16:40:04.777 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('小排', 4, '2019-07-13 16:40:05.320 ', '2019-07-13 16:40:05.320 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('卸妆油空瓶', 1, '2019-07-13 16:40:06.830 ', '2019-07-13 16:40:06.830 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('杏', 4, '2019-07-13 16:40:10.006 ', '2019-07-13 16:40:10.006 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('铅蓄电池', 2, '2019-07-13 16:40:12.385 ', '2019-07-13 16:40:12.385 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('雪蟹蟹壳', 4, '2019-07-13 16:40:14.005 ', '2019-07-13 16:40:14.005 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('龙眼壳', 4, '2019-07-13 16:40:17.934 ', '2019-07-13 16:40:17.934 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('过期燕麦片', 4, '2019-07-13 16:40:18.358 ', '2019-07-13 16:40:18.358 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('羊肉', 4, '2019-07-13 16:40:19.413 ', '2019-07-13 16:40:19.413 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('花椰菜', 4, '2019-07-13 16:40:41.203 ', '2019-07-13 16:40:41.203 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('口服液药瓶', 2, '2019-07-13 16:41:51.233 ', '2019-07-13 16:41:51.233 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('洗手液空瓶', 1, '2019-07-13 16:41:51.379 ', '2019-07-13 16:41:51.379 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('皮衣', 1, '2019-07-13 16:41:52.256 ', '2019-07-13 16:41:52.256 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电影胶片', 2, '2019-07-13 16:41:58.181 ', '2019-07-13 16:41:58.181 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('有机溶剂包装', 2, '2019-07-13 16:42:00.967 ', '2019-07-13 16:42:00.967 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玉米杆', 4, '2019-07-13 16:42:03.314 ', '2019-07-13 16:42:03.314 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('鲜肉月饼', 4, '2019-07-13 16:42:06.298 ', '2019-07-13 16:42:06.298 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('家养盆栽', 4, '2019-07-13 16:42:07.771 ', '2019-07-13 16:42:07.771 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('药渣', 4, '2019-07-13 16:42:10.514 ', '2019-07-13 16:42:10.514 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('炸鸡腿', 4, '2019-07-13 16:42:11.363 ', '2019-07-13 16:42:11.363 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('粘鼠胶', 2, '2019-07-13 16:42:12.245 ', '2019-07-13 16:42:12.245 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木质擀面杖', 1, '2019-07-13 16:42:13.476 ', '2019-07-13 16:42:13.476 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料擀面杖', 1, '2019-07-13 16:42:13.662 ', '2019-07-13 16:42:13.662 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('纸质账单', 1, '2019-07-13 16:42:14.196 ', '2019-07-13 16:42:14.196 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('照相机电池', 2, '2019-07-13 16:42:16.154 ', '2019-07-13 16:42:16.154 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('塑料砧板', 1, '2019-07-13 16:42:18.519 ', '2019-07-13 16:42:18.519 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('乳制品', 4, '2019-07-13 16:42:22.008 ', '2019-07-13 16:42:22.008 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('玻璃制品', 1, '2019-07-13 16:42:22.127 ', '2019-07-13 16:42:22.127 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('圆珠笔笔套', 1, '2019-07-13 16:42:24.280 ', '2019-07-13 16:42:24.280 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('水煮花生壳', 4, '2019-07-13 16:42:25.281 ', '2019-07-13 16:42:25.281 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('包装袋', 8, '2019-07-13 16:42:27.021 ', '2019-07-13 16:42:27.021 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('自动铅笔', 8, '2019-07-13 16:42:29.749 ', '2019-07-13 16:42:29.749 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('钻头', 1, '2019-07-13 16:42:31.069 ', '2019-07-13 16:42:31.069 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('安全座椅', 16, '2019-08-02 00:05:40.354 ', '2019-08-02 00:05:40.354 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('白板', 16, '2019-08-02 00:05:43.383 ', '2019-08-02 00:05:43.383 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('板凳', 16, '2019-08-02 00:05:44.170 ', '2019-08-02 00:05:44.170 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('脚踏车', 16, '2019-08-02 00:05:59.292 ', '2019-08-02 00:05:59.292 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('抽屉', 16, '2019-08-02 00:06:02.406 ', '2019-08-02 00:06:02.406 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('储物柜', 16, '2019-08-02 00:06:03.706 ', '2019-08-02 00:06:03.706 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('床', 16, '2019-08-02 00:06:04.612 ', '2019-08-02 00:06:04.612 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('凳子', 16, '2019-08-02 00:07:54.671 ', '2019-08-02 00:07:54.671 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('手风琴', 16, '2019-08-02 00:08:07.195 ', '2019-08-02 00:08:07.195 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('柜子', 16, '2019-08-02 00:08:43.953 ', '2019-08-02 00:08:43.953 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('大件垃圾', 16, '2019-08-02 00:08:55.350 ', '2019-08-02 00:08:55.350 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('家具', 16, '2019-08-02 00:10:03.665 ', '2019-08-02 00:10:03.665 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('红木家具', 16, '2019-08-02 00:10:03.667 ', '2019-08-02 00:10:03.667 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('书架', 16, '2019-08-02 00:10:04.529 ', '2019-08-02 00:10:04.529 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('课桌', 16, '2019-08-02 00:10:45.804 ', '2019-08-02 00:10:45.804 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('席梦思', 16, '2019-08-02 00:12:14.572 ', '2019-08-02 00:12:14.572 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电脑桌', 16, '2019-08-02 00:12:44.469 ', '2019-08-02 00:12:44.469 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('书柜', 16, '2019-08-02 00:14:32.389 ', '2019-08-02 00:14:32.389 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('木箱', 16, '2019-08-02 00:15:11.256 ', '2019-08-02 00:15:11.256 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('收录音机', 1, '2019-08-02 00:16:26.196 ', '2019-08-02 00:16:26.196 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('小型音响', 1, '2019-08-02 00:16:26.200 ', '2019-08-02 00:16:26.200 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('饮水机', 1, '2019-08-02 00:16:26.614 ', '2019-08-02 00:16:26.614 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电子游戏机', 1, '2019-08-02 00:16:31.374 ', '2019-08-02 00:16:31.374 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电子手表', 1, '2019-08-02 00:17:15.436 ', '2019-08-02 00:17:15.436 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('尿袋(家庭产生)', 8, '2019-08-02 00:17:21.607 ', '2019-08-02 00:17:21.607 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('手持电风扇', 1, '2019-08-02 00:17:24.947 ', '2019-08-02 00:17:24.947 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('空调器', 1, '2019-08-02 00:17:51.291 ', '2019-08-02 00:17:51.291 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('大型多功能打印机', 1, '2019-08-02 00:18:53.892 ', '2019-08-02 00:18:53.892 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('大型复印机', 1, '2019-08-02 00:19:11.418 ', '2019-08-02 00:19:11.418 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('大型烘干机', 1, '2019-08-02 00:19:29.183 ', '2019-08-02 00:19:29.183 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('小型烘干机', 1, '2019-08-02 00:19:29.185 ', '2019-08-02 00:19:29.185 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电子体温计', 1, '2019-08-02 00:19:54.776 ', '2019-08-02 00:19:54.776 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('冷暖气机', 1, '2019-08-02 00:21:33.714 ', '2019-08-02 00:21:33.714 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('落地电风扇', 1, '2019-08-02 00:21:58.586 ', '2019-08-02 00:21:58.586 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('落地式台灯', 1, '2019-08-02 00:21:58.589 ', '2019-08-02 00:21:58.589 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('迷你电视机', 1, '2019-08-02 00:22:02.967 ', '2019-08-02 00:22:02.967 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('电子闹钟', 1, '2019-08-02 00:23:35.085 ', '2019-08-02 00:23:35.085 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('大屏电视机', 1, '2019-08-02 00:23:45.026 ', '2019-08-02 00:23:45.026 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('台式电脑', 1, '2019-08-02 00:24:12.745 ', '2019-08-02 00:24:12.745 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('大型显示器', 1, '2019-08-02 00:24:12.792 ', '2019-08-02 00:24:12.792 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('小型显示器', 1, '2019-08-02 00:24:12.794 ', '2019-08-02 00:24:12.794 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('小型保险箱', 1, '2019-08-02 00:25:58.940 ', '2019-08-02 00:25:58.940 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('果汁机', 1, '2019-08-02 00:27:50.671 ', '2019-08-02 00:27:50.671 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('书桌', 16, '2019-08-02 00:28:02.241 ', '2019-08-02 00:28:02.241 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('桌子', 16, '2019-08-02 00:28:02.244 ', '2019-08-02 00:28:02.244 '); +INSERT INTO garbage (name, category, create_at, update_at) +VALUES ('家用吸尘器', 1, '2019-09-05 04:43:32.390 ', '2019-09-05 04:43:32.390 '); \ No newline at end of file diff --git a/test.php b/test.php index 7f81ee5..9c50f97 100644 --- a/test.php +++ b/test.php @@ -1,3 +1,23 @@ + + +菜鸟教程(runoob.com) + + + +
+ +
+ +
+ + + +EOF; + +