From 5eab1cf3f5c3189fef39dbc82167e7da63f7a05c Mon Sep 17 00:00:00 2001 From: liuxiaoxu <1793812695@qq.com> Date: Fri, 18 Oct 2024 11:28:24 +0800 Subject: [PATCH] =?UTF-8?q?[delete]=20=E5=88=A0=E9=99=A4=E6=97=A7=E7=89=88?= =?UTF-8?q?=E6=97=A0=E7=94=A8=E7=9A=84=E5=87=BA=E5=BA=93=E5=AF=B9=E8=B1=A1?= =?UTF-8?q?=E5=88=97=E8=A1=A8warehousing=5Fout=5Flist=E5=92=8C=E7=B3=BB?= =?UTF-8?q?=E7=BB=9F=E4=B8=AD=E5=AF=B9=E5=BA=94=E7=9A=84=E5=89=8D=E7=AB=AF?= =?UTF-8?q?=E6=89=80=E6=9C=89=E4=BB=A3=E7=A0=81=E5=92=8C=E5=90=8E=E7=AB=AF?= =?UTF-8?q?=E6=89=80=E6=9C=89=E4=BB=A3=E7=A0=81=20=E5=92=8C=E5=AF=B9?= =?UTF-8?q?=E5=BA=94=E7=9A=84=E7=B3=BB=E7=BB=9F=E8=8F=9C=E5=8D=95=E6=95=B0?= =?UTF-8?q?=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../WarehousingOutListController.java | 126 ------- .../stock/domain/WarehousingOutList.java | 320 ------------------ .../mapper/WarehousingOutListMapper.java | 62 ---- .../service/IWarehousingOutListService.java | 62 ---- .../impl/WarehousingOutListServiceImpl.java | 95 ------ .../mapper/stock/WarehousingOutListMapper.xml | 154 --------- .../stock/warehousingOutList/add.html | 151 --------- .../stock/warehousingOutList/edit.html | 152 --------- .../warehousingOutList.html | 244 ------------- 9 files changed, 1366 deletions(-) delete mode 100644 ruoyi-admin/src/main/java/com/ruoyi/stock/controller/WarehousingOutListController.java delete mode 100644 ruoyi-admin/src/main/java/com/ruoyi/stock/domain/WarehousingOutList.java delete mode 100644 ruoyi-admin/src/main/java/com/ruoyi/stock/mapper/WarehousingOutListMapper.java delete mode 100644 ruoyi-admin/src/main/java/com/ruoyi/stock/service/IWarehousingOutListService.java delete mode 100644 ruoyi-admin/src/main/java/com/ruoyi/stock/service/impl/WarehousingOutListServiceImpl.java delete mode 100644 ruoyi-admin/src/main/resources/mapper/stock/WarehousingOutListMapper.xml delete mode 100644 ruoyi-admin/src/main/resources/templates/stock/warehousingOutList/add.html delete mode 100644 ruoyi-admin/src/main/resources/templates/stock/warehousingOutList/edit.html delete mode 100644 ruoyi-admin/src/main/resources/templates/stock/warehousingOutList/warehousingOutList.html diff --git a/ruoyi-admin/src/main/java/com/ruoyi/stock/controller/WarehousingOutListController.java b/ruoyi-admin/src/main/java/com/ruoyi/stock/controller/WarehousingOutListController.java deleted file mode 100644 index 8fb35921..00000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/stock/controller/WarehousingOutListController.java +++ /dev/null @@ -1,126 +0,0 @@ -package com.ruoyi.stock.controller; - -import java.util.List; -import org.apache.shiro.authz.annotation.RequiresPermissions; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Controller; -import org.springframework.ui.ModelMap; -import org.springframework.web.bind.annotation.GetMapping; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.PostMapping; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.ResponseBody; -import com.ruoyi.common.annotation.Log; -import com.ruoyi.common.enums.BusinessType; -import com.ruoyi.stock.domain.WarehousingOutList; -import com.ruoyi.stock.service.IWarehousingOutListService; -import com.ruoyi.common.core.controller.BaseController; -import com.ruoyi.common.core.domain.AjaxResult; -import com.ruoyi.common.utils.poi.ExcelUtil; -import com.ruoyi.common.core.page.TableDataInfo; - -/** - * 出库Controller - * - * @author ruoyi - * @date 2021-12-16 - */ -@Controller -@RequestMapping("/stock/warehousingOutList") -public class WarehousingOutListController extends BaseController -{ - private String prefix = "stock/warehousingOutList"; - - @Autowired - private IWarehousingOutListService warehousingOutListService; - - @RequiresPermissions("stock:warehousingOutList:view") - @GetMapping() - public String warehousingOutList() - { - return prefix + "/warehousingOutList"; - } - - /** - * 查询出库列表 - */ - @RequiresPermissions("stock:warehousingOutList:list") - @PostMapping("/list") - @ResponseBody - public TableDataInfo list(WarehousingOutList warehousingOutList) - { - startPage(); - List list = warehousingOutListService.selectWarehousingOutListList(warehousingOutList); - return getDataTable(list); - } - - /** - * 导出出库列表 - */ - @RequiresPermissions("stock:warehousingOutList:export") - @Log(title = "出库", businessType = BusinessType.EXPORT) - @PostMapping("/export") - @ResponseBody - public AjaxResult export(WarehousingOutList warehousingOutList) - { - List list = warehousingOutListService.selectWarehousingOutListList(warehousingOutList); - ExcelUtil util = new ExcelUtil(WarehousingOutList.class); - return util.exportExcel(list, "出库数据"); - } - - /** - * 新增出库 - */ - @GetMapping("/add") - public String add() - { - return prefix + "/add"; - } - - /** - * 新增保存出库 - */ - @RequiresPermissions("stock:warehousingOutList:add") - @Log(title = "出库", businessType = BusinessType.INSERT) - @PostMapping("/add") - @ResponseBody - public AjaxResult addSave(WarehousingOutList warehousingOutList) - { - return toAjax(warehousingOutListService.insertWarehousingOutList(warehousingOutList)); - } - - /** - * 修改出库 - */ - @GetMapping("/edit/{warehousingOutNo}") - public String edit(@PathVariable("warehousingOutNo") String warehousingOutNo, ModelMap mmap) - { - WarehousingOutList warehousingOutList = warehousingOutListService.selectWarehousingOutListById(warehousingOutNo); - mmap.put("warehousingOutList", warehousingOutList); - return prefix + "/edit"; - } - - /** - * 修改保存出库 - */ - @RequiresPermissions("stock:warehousingOutList:edit") - @Log(title = "出库", businessType = BusinessType.UPDATE) - @PostMapping("/edit") - @ResponseBody - public AjaxResult editSave(WarehousingOutList warehousingOutList) - { - return toAjax(warehousingOutListService.updateWarehousingOutList(warehousingOutList)); - } - - /** - * 删除出库 - */ - @RequiresPermissions("stock:warehousingOutList:remove") - @Log(title = "出库", businessType = BusinessType.DELETE) - @PostMapping( "/remove") - @ResponseBody - public AjaxResult remove(String ids) - { - return toAjax(warehousingOutListService.deleteWarehousingOutListByIds(ids)); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/stock/domain/WarehousingOutList.java b/ruoyi-admin/src/main/java/com/ruoyi/stock/domain/WarehousingOutList.java deleted file mode 100644 index 7d1d581e..00000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/stock/domain/WarehousingOutList.java +++ /dev/null @@ -1,320 +0,0 @@ -package com.ruoyi.stock.domain; - -import com.ruoyi.common.annotation.Excel; -import com.ruoyi.common.core.domain.BaseEntity; -import org.apache.commons.lang3.builder.ToStringBuilder; -import org.apache.commons.lang3.builder.ToStringStyle; - -import java.math.BigDecimal; - -/** - * 出库对象 warehousing_out_list - * - * @author ruoyi - * @date 2021-12-16 - */ -public class WarehousingOutList extends BaseEntity -{ - private static final long serialVersionUID = 1L; - - /** 出库单号 */ - @Excel(name = "出库单号") - private String warehousingOutNo; - - /** 项次 */ - @Excel(name = "项次") - private String itemNo; - - /** 物料代码 */ - @Excel(name = "物料代码") - private String itemCode; - - /** 物料名称 */ - @Excel(name = "物料名称") - private String itemName; - - /** 物料规格 */ - @Excel(name = "物料规格") - private String itemSpecification; - - /** 机号 */ - @Excel(name = "机号") - private String machineType; - - /** 单位 */ - @Excel(name = "单位") - private String unit; - - /** 计划数量 */ - @Excel(name = "计划数量") - private Long planQty; - - /** 实际数量 */ - @Excel(name = "实际数量") - private Long realQty; - - /** 退回数量 */ - @Excel(name = "退回数量") - private Long returnQty; - - /** 币别 */ - @Excel(name = "币别") - private String coinType; - - /** 价格 */ - @Excel(name = "价格") - private BigDecimal price; - - /** 总价 */ - @Excel(name = "总价") - private BigDecimal totalPrice; - - @Excel(name = "备注") - private String remark; - - /** 订单号 */ - @Excel(name = "订单号") - private String buyOrderNo; - - /** 入库单号 */ - @Excel(name = "入库单号") - private String spare1; - - /** */ - @Excel(name = "") - private String spare2; - - /** */ - @Excel(name = "") - private String spare3; - - /** */ - @Excel(name = "") - private String spare4; - - /** */ - @Excel(name = "") - private String spare5; - - /** */ - @Excel(name = "") - private String spare6; - - @Override - public String getRemark() { - return remark; - } - - @Override - public void setRemark(String remark) { - this.remark = remark; - } - - public void setWarehousingOutNo(String warehousingOutNo) - { - this.warehousingOutNo = warehousingOutNo; - } - - public String getWarehousingOutNo() - { - return warehousingOutNo; - } - public void setItemNo(String itemNo) - { - this.itemNo = itemNo; - } - - public String getItemNo() - { - return itemNo; - } - public void setItemCode(String itemCode) - { - this.itemCode = itemCode; - } - - public String getItemCode() - { - return itemCode; - } - public void setItemName(String itemName) - { - this.itemName = itemName; - } - - public String getItemName() - { - return itemName; - } - public void setItemSpecification(String itemSpecification) - { - this.itemSpecification = itemSpecification; - } - - public String getItemSpecification() - { - return itemSpecification; - } - public void setMachineType(String machineType) - { - this.machineType = machineType; - } - - public String getMachineType() - { - return machineType; - } - public void setUnit(String unit) - { - this.unit = unit; - } - - public String getUnit() - { - return unit; - } - public void setPlanQty(Long planQty) - { - this.planQty = planQty; - } - - public Long getPlanQty() - { - return planQty; - } - public void setRealQty(Long realQty) - { - this.realQty = realQty; - } - - public Long getRealQty() - { - return realQty; - } - public void setReturnQty(Long returnQty) - { - this.returnQty = returnQty; - } - - public Long getReturnQty() - { - return returnQty; - } - public void setCoinType(String coinType) - { - this.coinType = coinType; - } - - public String getCoinType() - { - return coinType; - } - public void setPrice(BigDecimal price) - { - this.price = price; - } - - public BigDecimal getPrice() - { - return price; - } - public void setTotalPrice(BigDecimal totalPrice) - { - this.totalPrice = totalPrice; - } - - public BigDecimal getTotalPrice() - { - return totalPrice; - } - public void setBuyOrderNo(String buyOrderNo) - { - this.buyOrderNo = buyOrderNo; - } - - public String getBuyOrderNo() - { - return buyOrderNo; - } - public void setSpare1(String spare1) - { - this.spare1 = spare1; - } - - public String getSpare1() - { - return spare1; - } - public void setSpare2(String spare2) - { - this.spare2 = spare2; - } - - public String getSpare2() - { - return spare2; - } - public void setSpare3(String spare3) - { - this.spare3 = spare3; - } - - public String getSpare3() - { - return spare3; - } - public void setSpare4(String spare4) - { - this.spare4 = spare4; - } - - public String getSpare4() - { - return spare4; - } - public void setSpare5(String spare5) - { - this.spare5 = spare5; - } - - public String getSpare5() - { - return spare5; - } - public void setSpare6(String spare6) - { - this.spare6 = spare6; - } - - public String getSpare6() - { - return spare6; - } - - @Override - public String toString() { - return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) - .append("warehousingOutNo", getWarehousingOutNo()) - .append("itemNo", getItemNo()) - .append("itemCode", getItemCode()) - .append("itemName", getItemName()) - .append("itemSpecification", getItemSpecification()) - .append("machineType", getMachineType()) - .append("unit", getUnit()) - .append("planQty", getPlanQty()) - .append("realQty", getRealQty()) - .append("returnQty", getReturnQty()) - .append("coinType", getCoinType()) - .append("price", getPrice()) - .append("totalPrice", getTotalPrice()) - .append("remark", getRemark()) - .append("buyOrderNo", getBuyOrderNo()) - .append("spare1", getSpare1()) - .append("spare2", getSpare2()) - .append("spare3", getSpare3()) - .append("spare4", getSpare4()) - .append("spare5", getSpare5()) - .append("spare6", getSpare6()) - .toString(); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/stock/mapper/WarehousingOutListMapper.java b/ruoyi-admin/src/main/java/com/ruoyi/stock/mapper/WarehousingOutListMapper.java deleted file mode 100644 index 03a7fb49..00000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/stock/mapper/WarehousingOutListMapper.java +++ /dev/null @@ -1,62 +0,0 @@ -package com.ruoyi.stock.mapper; - -import com.ruoyi.stock.domain.WarehousingOutList; - -import java.util.List; - -/** - * 出库Mapper接口 - * - * @author ruoyi - * @date 2021-12-16 - */ -public interface WarehousingOutListMapper -{ - /** - * 查询出库 - * - * @param warehousingOutNo 出库ID - * @return 出库 - */ - public WarehousingOutList selectWarehousingOutListById(String warehousingOutNo); - - /** - * 查询出库列表 - * - * @param warehousingOutList 出库 - * @return 出库集合 - */ - public List selectWarehousingOutListList(WarehousingOutList warehousingOutList); - - /** - * 新增出库 - * - * @param warehousingOutList 出库 - * @return 结果 - */ - public int insertWarehousingOutList(WarehousingOutList warehousingOutList); - - /** - * 修改出库 - * - * @param warehousingOutList 出库 - * @return 结果 - */ - public int updateWarehousingOutList(WarehousingOutList warehousingOutList); - - /** - * 删除出库 - * - * @param warehousingOutNo 出库ID - * @return 结果 - */ - public int deleteWarehousingOutListById(String warehousingOutNo); - - /** - * 批量删除出库 - * - * @param warehousingOutNos 需要删除的数据ID - * @return 结果 - */ - public int deleteWarehousingOutListByIds(String[] warehousingOutNos); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/stock/service/IWarehousingOutListService.java b/ruoyi-admin/src/main/java/com/ruoyi/stock/service/IWarehousingOutListService.java deleted file mode 100644 index b7c88b79..00000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/stock/service/IWarehousingOutListService.java +++ /dev/null @@ -1,62 +0,0 @@ -package com.ruoyi.stock.service; - -import com.ruoyi.stock.domain.WarehousingOutList; - -import java.util.List; - -/** - * 出库Service接口 - * - * @author ruoyi - * @date 2021-12-16 - */ -public interface IWarehousingOutListService -{ - /** - * 查询出库 - * - * @param warehousingOutNo 出库ID - * @return 出库 - */ - public WarehousingOutList selectWarehousingOutListById(String warehousingOutNo); - - /** - * 查询出库列表 - * - * @param warehousingOutList 出库 - * @return 出库集合 - */ - public List selectWarehousingOutListList(WarehousingOutList warehousingOutList); - - /** - * 新增出库 - * - * @param warehousingOutList 出库 - * @return 结果 - */ - public int insertWarehousingOutList(WarehousingOutList warehousingOutList); - - /** - * 修改出库 - * - * @param warehousingOutList 出库 - * @return 结果 - */ - public int updateWarehousingOutList(WarehousingOutList warehousingOutList); - - /** - * 批量删除出库 - * - * @param ids 需要删除的数据ID - * @return 结果 - */ - public int deleteWarehousingOutListByIds(String ids); - - /** - * 删除出库信息 - * - * @param warehousingOutNo 出库ID - * @return 结果 - */ - public int deleteWarehousingOutListById(String warehousingOutNo); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/stock/service/impl/WarehousingOutListServiceImpl.java b/ruoyi-admin/src/main/java/com/ruoyi/stock/service/impl/WarehousingOutListServiceImpl.java deleted file mode 100644 index 860892d5..00000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/stock/service/impl/WarehousingOutListServiceImpl.java +++ /dev/null @@ -1,95 +0,0 @@ -package com.ruoyi.stock.service.impl; - -import com.ruoyi.common.core.text.Convert; -import com.ruoyi.stock.domain.WarehousingOutList; -import com.ruoyi.stock.mapper.WarehousingOutListMapper; -import com.ruoyi.stock.service.IWarehousingOutListService; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Service; - -import java.util.List; - -/** - * 出库Service业务层处理 - * - * @author ruoyi - * @date 2021-12-16 - */ -@Service -public class WarehousingOutListServiceImpl implements IWarehousingOutListService -{ - @Autowired - private WarehousingOutListMapper warehousingOutListMapper; - - /** - * 查询出库 - * - * @param warehousingOutNo 出库ID - * @return 出库 - */ - @Override - public WarehousingOutList selectWarehousingOutListById(String warehousingOutNo) - { - return warehousingOutListMapper.selectWarehousingOutListById(warehousingOutNo); - } - - /** - * 查询出库列表 - * - * @param warehousingOutList 出库 - * @return 出库 - */ - @Override - public List selectWarehousingOutListList(WarehousingOutList warehousingOutList) - { - return warehousingOutListMapper.selectWarehousingOutListList(warehousingOutList); - } - - /** - * 新增出库 - * - * @param warehousingOutList 出库 - * @return 结果 - */ - @Override - public int insertWarehousingOutList(WarehousingOutList warehousingOutList) - { - return warehousingOutListMapper.insertWarehousingOutList(warehousingOutList); - } - - /** - * 修改出库 - * - * @param warehousingOutList 出库 - * @return 结果 - */ - @Override - public int updateWarehousingOutList(WarehousingOutList warehousingOutList) - { - return warehousingOutListMapper.updateWarehousingOutList(warehousingOutList); - } - - /** - * 删除出库对象 - * - * @param ids 需要删除的数据ID - * @return 结果 - */ - @Override - public int deleteWarehousingOutListByIds(String ids) - { - return warehousingOutListMapper.deleteWarehousingOutListByIds(Convert.toStrArray(ids)); - } - - /** - * 删除出库信息 - * - * @param warehousingOutNo 出库ID - * @return 结果 - */ - @Override - public int deleteWarehousingOutListById(String warehousingOutNo) - { - return warehousingOutListMapper.deleteWarehousingOutListById(warehousingOutNo); - } -} diff --git a/ruoyi-admin/src/main/resources/mapper/stock/WarehousingOutListMapper.xml b/ruoyi-admin/src/main/resources/mapper/stock/WarehousingOutListMapper.xml deleted file mode 100644 index 8a72e842..00000000 --- a/ruoyi-admin/src/main/resources/mapper/stock/WarehousingOutListMapper.xml +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - select warehousingOutNo, itemNo, itemCode, itemName, itemSpecification, machineType, unit, planQty, realQty, returnQty, coinType, price, totalPrice, remark, buyOrderNo, spare1, spare2, spare3, spare4, spare5, spare6 from warehousing_out_list - - - - - - - - insert into warehousing_out_list - - warehousingOutNo, - itemNo, - itemCode, - itemName, - itemSpecification, - machineType, - unit, - planQty, - realQty, - returnQty, - coinType, - price, - totalPrice, - remark, - buyOrderNo, - spare1, - spare2, - spare3, - spare4, - spare5, - spare6, - - - #{warehousingOutNo}, - #{itemNo}, - #{itemCode}, - #{itemName}, - #{itemSpecification}, - #{machineType}, - #{unit}, - #{planQty}, - #{realQty}, - #{returnQty}, - #{coinType}, - #{price}, - #{totalPrice}, - #{remark}, - #{buyOrderNo}, - #{spare1}, - #{spare2}, - #{spare3}, - #{spare4}, - #{spare5}, - #{spare6}, - - - - - update warehousing_out_list - - itemNo = #{itemNo}, - itemCode = #{itemCode}, - itemName = #{itemName}, - itemSpecification = #{itemSpecification}, - machineType = #{machineType}, - unit = #{unit}, - planQty = #{planQty}, - realQty = #{realQty}, - returnQty = #{returnQty}, - coinType = #{coinType}, - price = #{price}, - totalPrice = #{totalPrice}, - remark = #{remark}, - buyOrderNo = #{buyOrderNo}, - spare1 = #{spare1}, - spare2 = #{spare2}, - spare3 = #{spare3}, - spare4 = #{spare4}, - spare5 = #{spare5}, - spare6 = #{spare6}, - - where warehousingOutNo = #{warehousingOutNo} - - - - delete from warehousing_out_list where warehousingOutNo = #{warehousingOutNo} - - - - delete from warehousing_out_list where warehousingOutNo in - - #{warehousingOutNo} - - - - \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/templates/stock/warehousingOutList/add.html b/ruoyi-admin/src/main/resources/templates/stock/warehousingOutList/add.html deleted file mode 100644 index 72cbf1ac..00000000 --- a/ruoyi-admin/src/main/resources/templates/stock/warehousingOutList/add.html +++ /dev/null @@ -1,151 +0,0 @@ - - - - - - -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- - 代码生成请选择字典属性 -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- - 代码生成请选择字典属性 -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
-
- - - - \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/templates/stock/warehousingOutList/edit.html b/ruoyi-admin/src/main/resources/templates/stock/warehousingOutList/edit.html deleted file mode 100644 index 1b3708b8..00000000 --- a/ruoyi-admin/src/main/resources/templates/stock/warehousingOutList/edit.html +++ /dev/null @@ -1,152 +0,0 @@ - - - - - - -
-
- -
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- - 代码生成请选择字典属性 -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- - 代码生成请选择字典属性 -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
-
- - - - \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/templates/stock/warehousingOutList/warehousingOutList.html b/ruoyi-admin/src/main/resources/templates/stock/warehousingOutList/warehousingOutList.html deleted file mode 100644 index 684333e6..00000000 --- a/ruoyi-admin/src/main/resources/templates/stock/warehousingOutList/warehousingOutList.html +++ /dev/null @@ -1,244 +0,0 @@ - - - - - - -
-
-
-
-
-
    -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • -  搜索 -  重置 -
  • -
-
-
-
- - -
-
-
-
-
- - - - \ No newline at end of file