diff --git a/ruoyi-admin/src/main/java/com/ruoyi/po/controller/BuyorderListController.java b/ruoyi-admin/src/main/java/com/ruoyi/po/controller/BuyorderListController.java deleted file mode 100644 index 0255ffb0..00000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/po/controller/BuyorderListController.java +++ /dev/null @@ -1,132 +0,0 @@ -package com.ruoyi.po.controller; - -import com.ruoyi.ck.utils.Result; -import com.ruoyi.common.annotation.Log; -import com.ruoyi.common.core.controller.BaseController; -import com.ruoyi.common.core.domain.AjaxResult; -import com.ruoyi.common.core.page.TableDataInfo; -import com.ruoyi.common.enums.BusinessType; -import com.ruoyi.common.utils.poi.ExcelUtil; -import com.ruoyi.po.domain.BuyorderList; -import com.ruoyi.po.service.IBuyorderListService; -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.*; - -import java.util.List; - -/** - * 订单列表Controller - * - * @author ruoyi - * @date 2021-10-07 - */ -@Controller -@RequestMapping("/po/orderlist") -public class BuyorderListController extends BaseController -{ - private String prefix = "po/orderlist"; - - @Autowired - private IBuyorderListService buyorderListService; - - @RequiresPermissions("po:orderlist:view") - @GetMapping() - public String orderlist() - { - return prefix + "/orderlist"; - } - - /** - * 查询订单列表列表 - */ - @RequiresPermissions("po:orderlist:list") - @PostMapping("/list") - @ResponseBody - public TableDataInfo list(BuyorderList buyorderList) - { - startPage(); - List list = buyorderListService.selectBuyorderListList(buyorderList); - System.out.println("111111111111111"+list); - return getDataTable(list); - } - - /** - * 导出订单列表列表 - */ - @RequiresPermissions("po:orderlist:export") - @Log(title = "订单列表", businessType = BusinessType.EXPORT) - @PostMapping("/export") - @ResponseBody - public AjaxResult export(BuyorderList buyorderList) - { - List list = buyorderListService.selectBuyorderListList(buyorderList); - ExcelUtil util = new ExcelUtil(BuyorderList.class); - return util.exportExcel(list, "订单列表数据"); - } - - /** - * 新增订单列表 - */ - @GetMapping("/add") - public String add() - { - return prefix + "/add"; - } - - /** - * 新增保存订单列表 - */ - @RequiresPermissions("po:orderlist:add") - @Log(title = "订单列表", businessType = BusinessType.INSERT) - @PostMapping("/add") - @ResponseBody - public AjaxResult addSave(BuyorderList buyorderList) - { - return toAjax(buyorderListService.insertBuyorderList(buyorderList)); - } - - /** - * 修改订单列表 - */ - @GetMapping("/edit/{poId}") - public String edit(@PathVariable("poId") String poId, ModelMap mmap) - { - BuyorderList buyorderList = buyorderListService.selectBuyorderListById(poId); - mmap.put("buyorderList", buyorderList); - return prefix + "/edit"; - } - - /** - * 修改保存订单列表 - */ - @RequiresPermissions("po:orderlist:edit") - @Log(title = "订单列表", businessType = BusinessType.UPDATE) - @PostMapping("/edit") - @ResponseBody - public AjaxResult editSave(BuyorderList buyorderList) - { - return toAjax(buyorderListService.updateBuyorderList(buyorderList)); - } - - /** - * 删除订单列表 - */ - @RequiresPermissions("po:orderlist:remove") - @Log(title = "订单列表", businessType = BusinessType.DELETE) - @PostMapping( "/remove") - @ResponseBody - public AjaxResult remove(String ids) - { - return toAjax(buyorderListService.deleteBuyorderListByIds(ids)); - } - - @RequiresPermissions("po:orderlist:count") - @PostMapping("/count") - @ResponseBody - public Result findCountByDay() throws Exception { - return buyorderListService.findCountByDay(); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/po/domain/BuyorderList.java b/ruoyi-admin/src/main/java/com/ruoyi/po/domain/BuyorderList.java deleted file mode 100644 index c158a98f..00000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/po/domain/BuyorderList.java +++ /dev/null @@ -1,432 +0,0 @@ -package com.ruoyi.po.domain; - -import com.fasterxml.jackson.annotation.JsonFormat; -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; -import java.util.Date; - -/** - * 订单列表对象 buyorder_list - * - * @author ruoyi - * @date 2021-10-07 - */ -public class BuyorderList extends BaseEntity -{ - private static final long serialVersionUID = 1L; - - /** 订单id */ - private String poId; - - /** 公司名称 */ - private String PNO; - - /** 代码 */ - @Excel(name = "代码") - private String wlCode; - - /** 名称 */ - @Excel(name = "名称") - private String Itemname; - - /** 规格型号 */ - @Excel(name = "规格型号") - private String Itemstandard; - - /** 单位 */ - @Excel(name = "单位") - private String stockDw; - - /** 数量 */ - @Excel(name = "数量") - private BigDecimal Qty; - - /** 重量 */ - @Excel(name = "重量") - private BigDecimal Weight; - - /** 币别 */ - @Excel(name = "币别") - private String crlName; - - /** 单价 */ - @Excel(name = "单价") - private BigDecimal Price; - - /** 金额 */ - @Excel(name = "金额") - private BigDecimal Amt; - - /** 交期 */ - @JsonFormat(pattern = "yyyy-MM-dd") - @Excel(name = "交期", width = 30, dateFormat = "yyyy-MM-dd") - private Date SendDate; - - /** 说明 */ - @Excel(name = "说明") - private String MemoList; - - /** */ - private BigDecimal OrderQty; - - /** 欠单数量 */ - private BigDecimal qQty; - - /** 入库数量 */ - private Long poQty; - - /** 入库单位 */ - private String poDw; - - /** 入库单价 */ - private Long poPrice; - - /** */ - private Long poRelation; - - /** */ - private Date getDate; - - /** */ - private BigDecimal huili; - - /** 人民币价格 */ - private BigDecimal rmbPrice; - - /** */ - private String gysno; - - /** */ - private BigDecimal killQty; - - /** */ - private Integer jaFlag; - - /** */ - private String taxMemolist; - - /** */ - private Long juanNum; - - /** */ - private String pWldm; - - /** 未入库数量 */ - @Excel(name = "未入库数量") - private Long notSubmittedNum; - - /** 已入库数量 */ - @Excel(name = "已入库数量") - private Long submittedNum; - - public void setPoId(String poId) - { - this.poId = poId; - } - - public String getPoId() - { - return poId; - } - public void setPNO(String PNO) - { - this.PNO = PNO; - } - - public String getPNO() - { - return PNO; - } - public void setWlCode(String wlCode) - { - this.wlCode = wlCode; - } - - public String getWlCode() - { - return wlCode; - } - public void setItemname(String Itemname) - { - this.Itemname = Itemname; - } - - public String getItemname() - { - return Itemname; - } - public void setItemstandard(String Itemstandard) - { - this.Itemstandard = Itemstandard; - } - - public String getItemstandard() - { - return Itemstandard; - } - public void setStockDw(String stockDw) - { - this.stockDw = stockDw; - } - - public String getStockDw() - { - return stockDw; - } - public void setQty(BigDecimal Qty) - { - this.Qty = Qty; - } - - public BigDecimal getQty() - { - return Qty; - } - public void setWeight(BigDecimal Weight) - { - this.Weight = Weight; - } - - public BigDecimal getWeight() - { - return Weight; - } - public void setCrlName(String crlName) - { - this.crlName = crlName; - } - - public String getCrlName() - { - return crlName; - } - public void setPrice(BigDecimal Price) - { - this.Price = Price; - } - - public BigDecimal getPrice() - { - return Price; - } - public void setAmt(BigDecimal Amt) - { - this.Amt = Amt; - } - - public BigDecimal getAmt() - { - return Amt; - } - public void setSendDate(Date SendDate) - { - this.SendDate = SendDate; - } - - public Date getSendDate() - { - return SendDate; - } - public void setMemoList(String MemoList) - { - this.MemoList = MemoList; - } - - public String getMemoList() - { - return MemoList; - } - public void setOrderQty(BigDecimal OrderQty) - { - this.OrderQty = OrderQty; - } - - public BigDecimal getOrderQty() - { - return OrderQty; - } - public void setqQty(BigDecimal qQty) - { - this.qQty = qQty; - } - - public BigDecimal getqQty() - { - return qQty; - } - public void setPoQty(Long poQty) - { - this.poQty = poQty; - } - - public Long getPoQty() - { - return poQty; - } - public void setPoDw(String poDw) - { - this.poDw = poDw; - } - - public String getPoDw() - { - return poDw; - } - public void setPoPrice(Long poPrice) - { - this.poPrice = poPrice; - } - - public Long getPoPrice() - { - return poPrice; - } - public void setPoRelation(Long poRelation) - { - this.poRelation = poRelation; - } - - public Long getPoRelation() - { - return poRelation; - } - public void setGetDate(Date getDate) - { - this.getDate = getDate; - } - - public Date getGetDate() - { - return getDate; - } - public void setHuili(BigDecimal huili) - { - this.huili = huili; - } - - public BigDecimal getHuili() - { - return huili; - } - public void setRmbPrice(BigDecimal rmbPrice) - { - this.rmbPrice = rmbPrice; - } - - public BigDecimal getRmbPrice() - { - return rmbPrice; - } - public void setGysno(String gysno) - { - this.gysno = gysno; - } - - public String getGysno() - { - return gysno; - } - public void setKillQty(BigDecimal killQty) - { - this.killQty = killQty; - } - - public BigDecimal getKillQty() - { - return killQty; - } - public void setJaFlag(Integer jaFlag) - { - this.jaFlag = jaFlag; - } - - public Integer getJaFlag() - { - return jaFlag; - } - public void setTaxMemolist(String taxMemolist) - { - this.taxMemolist = taxMemolist; - } - - public String getTaxMemolist() - { - return taxMemolist; - } - public void setJuanNum(Long juanNum) - { - this.juanNum = juanNum; - } - - public Long getJuanNum() - { - return juanNum; - } - public void setpWldm(String pWldm) - { - this.pWldm = pWldm; - } - - public String getpWldm() - { - return pWldm; - } - public void setNotSubmittedNum(Long notSubmittedNum) - { - this.notSubmittedNum = notSubmittedNum; - } - - public Long getNotSubmittedNum() - { - return notSubmittedNum; - } - public void setSubmittedNum(Long submittedNum) - { - this.submittedNum = submittedNum; - } - - public Long getSubmittedNum() - { - return submittedNum; - } - - @Override - public String toString() { - return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) - .append("poId", getPoId()) - .append("PNO", getPNO()) - .append("wlCode", getWlCode()) - .append("Itemname", getItemname()) - .append("Itemstandard", getItemstandard()) - .append("stockDw", getStockDw()) - .append("Qty", getQty()) - .append("Weight", getWeight()) - .append("crlName", getCrlName()) - .append("Price", getPrice()) - .append("Amt", getAmt()) - .append("SendDate", getSendDate()) - .append("MemoList", getMemoList()) - .append("OrderQty", getOrderQty()) - .append("qQty", getqQty()) - .append("poQty", getPoQty()) - .append("poDw", getPoDw()) - .append("poPrice", getPoPrice()) - .append("poRelation", getPoRelation()) - .append("getDate", getGetDate()) - .append("huili", getHuili()) - .append("rmbPrice", getRmbPrice()) - .append("gysno", getGysno()) - .append("killQty", getKillQty()) - .append("jaFlag", getJaFlag()) - .append("taxMemolist", getTaxMemolist()) - .append("juanNum", getJuanNum()) - .append("pWldm", getpWldm()) - .append("notSubmittedNum", getNotSubmittedNum()) - .append("submittedNum", getSubmittedNum()) - .toString(); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/po/mapper/BuyorderListMapper.java b/ruoyi-admin/src/main/java/com/ruoyi/po/mapper/BuyorderListMapper.java deleted file mode 100644 index 2791b8df..00000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/po/mapper/BuyorderListMapper.java +++ /dev/null @@ -1,64 +0,0 @@ -package com.ruoyi.po.mapper; - -import com.ruoyi.po.domain.BuyorderList; - -import java.util.List; - -/** - * 订单列表Mapper接口 - * - * @author ruoyi - * @date 2021-10-07 - */ -public interface BuyorderListMapper -{ - /** - * 查询订单列表 - * - * @param poId 订单列表ID - * @return 订单列表 - */ - public BuyorderList selectBuyorderListById(String poId); - - /** - * 查询订单列表列表 - * - * @param buyorderList 订单列表 - * @return 订单列表集合 - */ - public List selectBuyorderListList(BuyorderList buyorderList); - - /** - * 新增订单列表 - * - * @param buyorderList 订单列表 - * @return 结果 - */ - public int insertBuyorderList(BuyorderList buyorderList); - - /** - * 修改订单列表 - * - * @param buyorderList 订单列表 - * @return 结果 - */ - public int updateBuyorderList(BuyorderList buyorderList); - - /** - * 删除订单列表 - * - * @param poId 订单列表ID - * @return 结果 - */ - public int deleteBuyorderListById(String poId); - - /** - * 批量删除订单列表 - * - * @param poIds 需要删除的数据ID - * @return 结果 - */ - public int deleteBuyorderListByIds(String[] poIds); - - public Integer selectCountByDay(); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/po/service/IBuyorderListService.java b/ruoyi-admin/src/main/java/com/ruoyi/po/service/IBuyorderListService.java deleted file mode 100644 index 3869750b..00000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/po/service/IBuyorderListService.java +++ /dev/null @@ -1,67 +0,0 @@ -package com.ruoyi.po.service; - -import com.ruoyi.ck.utils.Result; -import com.ruoyi.po.domain.BuyorderList; - -import java.util.List; - -/** - * 订单列表Service接口 - * - * @author ruoyi - * @date 2021-10-07 - */ -public interface IBuyorderListService -{ - /** - * 查询订单列表 - * - * @param poId 订单列表ID - * @return 订单列表 - */ - public BuyorderList selectBuyorderListById(String poId); - - /** - * 查询订单列表列表 - * - * @param buyorderList 订单列表 - * @return 订单列表集合 - */ - public List selectBuyorderListList(BuyorderList buyorderList); - - /** - * 新增订单列表 - * - * @param buyorderList 订单列表 - * @return 结果 - */ - public int insertBuyorderList(BuyorderList buyorderList); - - /** - * 修改订单列表 - * - * @param buyorderList 订单列表 - * @return 结果 - */ - public int updateBuyorderList(BuyorderList buyorderList); - - /** - * 批量删除订单列表 - * - * @param ids 需要删除的数据ID - * @return 结果 - */ - public int deleteBuyorderListByIds(String ids); - - /** - * 删除订单列表信息 - * - * @param poId 订单列表ID - * @return 结果 - */ - public int deleteBuyorderListById(String poId); - - public Result findCountByDay()throws Exception; - - -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/po/service/impl/BuyorderListServiceImpl.java b/ruoyi-admin/src/main/java/com/ruoyi/po/service/impl/BuyorderListServiceImpl.java deleted file mode 100644 index a5457518..00000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/po/service/impl/BuyorderListServiceImpl.java +++ /dev/null @@ -1,107 +0,0 @@ -package com.ruoyi.po.service.impl; - -import com.ruoyi.ck.utils.Result; -import com.ruoyi.common.core.text.Convert; -import com.ruoyi.po.domain.BuyorderList; -import com.ruoyi.po.mapper.BuyorderListMapper; -import com.ruoyi.po.service.IBuyorderListService; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Service; - -import java.time.LocalDate; -import java.util.List; - -/** - * 订单列表Service业务层处理 - * - * @author ruoyi - * @date 2021-10-07 - */ -@Service -public class BuyorderListServiceImpl implements IBuyorderListService -{ - @Autowired - private BuyorderListMapper buyorderListMapper; - - /** - * 查询订单列表 - * - * @param poId 订单列表ID - * @return 订单列表 - */ - @Override - public BuyorderList selectBuyorderListById(String poId) - { - return buyorderListMapper.selectBuyorderListById(poId); - } - - /** - * 查询订单列表列表 - * - * @param buyorderList 订单列表 - * @return 订单列表 - */ - @Override - public List selectBuyorderListList(BuyorderList buyorderList) - { - return buyorderListMapper.selectBuyorderListList(buyorderList); - } - - /** - * 新增订单列表 - * - * @param buyorderList 订单列表 - * @return 结果 - */ - @Override - public int insertBuyorderList(BuyorderList buyorderList) - { - return buyorderListMapper.insertBuyorderList(buyorderList); - } - - /** - * 修改订单列表 - * - * @param buyorderList 订单列表 - * @return 结果 - */ - @Override - public int updateBuyorderList(BuyorderList buyorderList) - { - return buyorderListMapper.updateBuyorderList(buyorderList); - } - - /** - * 删除订单列表对象 - * - * @param ids 需要删除的数据ID - * @return 结果 - */ - @Override - public int deleteBuyorderListByIds(String ids) - { - return buyorderListMapper.deleteBuyorderListByIds(Convert.toStrArray(ids)); - } - - /** - * 删除订单列表信息 - * - * @param poId 订单列表ID - * @return 结果 - */ - @Override - public int deleteBuyorderListById(String poId) - { - return buyorderListMapper.deleteBuyorderListById(poId); - } - - @Override - public Result findCountByDay() throws Exception { - Integer count = buyorderListMapper.selectCountByDay()+1; - LocalDate now = LocalDate.now(); - String substring = now.toString().replace("-", "").substring(2); - String data="PO"+substring+count; - //System.out.println("........."+data); - return Result.getSuccessResult(data); - } -} diff --git a/ruoyi-admin/src/main/resources/mapper/po/BuyorderListMapper.xml b/ruoyi-admin/src/main/resources/mapper/po/BuyorderListMapper.xml deleted file mode 100644 index 78b8c752..00000000 --- a/ruoyi-admin/src/main/resources/mapper/po/BuyorderListMapper.xml +++ /dev/null @@ -1,179 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - select PO_ID, PNO, Wl_Code, Itemname, Itemstandard, Stock_dw, Qty, Weight, Crl_Name, Price, Amt, SendDate, MemoList, OrderQty, Q_Qty, PO_qty, po_dw, po_price, po_relation, get_date, huili, RMB_Price, gysno, Kill_QTY, JA_Flag, tax_memolist, juan_num, p_wldm, not_submitted_num, submitted_num from buyorder_list - - - - - - - - insert into buyorder_list - - PO_ID, - PNO, - Wl_Code, - Itemname, - Itemstandard, - Stock_dw, - Qty, - Weight, - Crl_Name, - Price, - Amt, - SendDate, - MemoList, - OrderQty, - Q_Qty, - PO_qty, - po_dw, - po_price, - po_relation, - get_date, - huili, - RMB_Price, - gysno, - Kill_QTY, - JA_Flag, - tax_memolist, - juan_num, - p_wldm, - not_submitted_num, - submitted_num, - - - #{poId}, - #{PNO}, - #{wlCode}, - #{Itemname}, - #{Itemstandard}, - #{stockDw}, - #{Qty}, - #{Weight}, - #{crlName}, - #{Price}, - #{Amt}, - #{SendDate}, - #{MemoList}, - #{OrderQty}, - #{qQty}, - #{poQty}, - #{poDw}, - #{poPrice}, - #{poRelation}, - #{getDate}, - #{huili}, - #{rmbPrice}, - #{gysno}, - #{killQty}, - #{jaFlag}, - #{taxMemolist}, - #{juanNum}, - #{pWldm}, - #{notSubmittedNum}, - #{submittedNum}, - - - - - update buyorder_list - - PNO = #{PNO}, - Wl_Code = #{wlCode}, - Itemname = #{Itemname}, - Itemstandard = #{Itemstandard}, - Stock_dw = #{stockDw}, - Qty = #{Qty}, - Weight = #{Weight}, - Crl_Name = #{crlName}, - Price = #{Price}, - Amt = #{Amt}, - SendDate = #{SendDate}, - MemoList = #{MemoList}, - OrderQty = #{OrderQty}, - Q_Qty = #{qQty}, - PO_qty = #{poQty}, - po_dw = #{poDw}, - po_price = #{poPrice}, - po_relation = #{poRelation}, - get_date = #{getDate}, - huili = #{huili}, - RMB_Price = #{rmbPrice}, - gysno = #{gysno}, - Kill_QTY = #{killQty}, - JA_Flag = #{jaFlag}, - tax_memolist = #{taxMemolist}, - juan_num = #{juanNum}, - p_wldm = #{pWldm}, - not_submitted_num = #{notSubmittedNum}, - submitted_num = #{submittedNum}, - - where PO_ID = #{poId} - - - - delete from buyorder_list where PO_ID = #{poId} - - - - delete from buyorder_list where PO_ID in - - #{poId} - - - - - - \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/templates/po/orderlist/add.html b/ruoyi-admin/src/main/resources/templates/po/orderlist/add.html deleted file mode 100644 index 2a350c44..00000000 --- a/ruoyi-admin/src/main/resources/templates/po/orderlist/add.html +++ /dev/null @@ -1,225 +0,0 @@ - - - - - - - -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
- - -
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
- - -
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
-
- - - - - \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/templates/po/orderlist/edit.html b/ruoyi-admin/src/main/resources/templates/po/orderlist/edit.html deleted file mode 100644 index 9e500305..00000000 --- a/ruoyi-admin/src/main/resources/templates/po/orderlist/edit.html +++ /dev/null @@ -1,226 +0,0 @@ - - - - - - - -
-
- -
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
- - -
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
- - -
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
-
- - - - - \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/templates/po/orderlist/orderlist.html b/ruoyi-admin/src/main/resources/templates/po/orderlist/orderlist.html deleted file mode 100644 index a9f099fd..00000000 --- a/ruoyi-admin/src/main/resources/templates/po/orderlist/orderlist.html +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - -
-
-
-
-
-
    -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • -  搜索 -  重置 -
  • -
-
-
-
- - -
-
-
-
-
- - - - \ No newline at end of file