水表树查询

package com.yunfang.nyys.controller;

import cn.hutool.json.JSONArray;
import com.google.gson.JsonArray;
import com.google.gson.JsonObject;
import com.jfinal.plugin.activerecord.Db;
import com.jfinal.plugin.activerecord.Record;
import com.yunfang.common.core.controller.BaseController;
import com.yunfang.common.core.domain.Ztree;
import com.yunfang.common.utils.DateUtils;
import com.yunfang.common.utils.StringUtils;
import com.yunfang.nyys.domain.*;
import com.yunfang.nyys.service.INyysJzjlAreaDeviceService;
import com.yunfang.nyys.service.INyysJzjlAreaService;
import com.yunfang.nyys.service.INyysJzjlUnitService;
import com.yunfang.nyys.service.NyysJzjlDeviceTreeService;
import com.yunfang.system.service.ISysDeptService;
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.math.BigDecimal;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

/**
 * @author cqh
 * @create 2022/7/20 11:34
 */
@Controller
@RequestMapping("/nyys/jzjldevicetree")
public class NyysJzjlDeviceTreeController extends BaseController {

    private String prefix = "/nyys/jzjldevicetree";

    @Autowired
    ISysDeptService sysDeptService;

    @Autowired
    private NyysJzjlDeviceTreeService nyysJzjlDeviceTreeService;

    @Autowired
    private INyysJzjlUnitService nyysJzjlUnitService;
    @Autowired
    private INyysJzjlAreaService nyysJzjlAreaService;
    @Autowired
    private INyysJzjlAreaDeviceService nyysJzjlAreaDeviceService;

    @GetMapping("list")
    public String list(ModelMap mmap) {
        mmap.put("user", getSysUser());
        mmap.put("dept", sysDeptService.getCachedDeptById(getSysUser().getDeptId()));
        mmap.put("year", DateUtils.dateTimeNow("yyyy"));
        return prefix + "/list";
    }

    @RequestMapping("list/data")
//    public String listData(@RequestParam(required = false) Long unitId, @RequestParam(required = false) Long areaId, @RequestParam(required = false) Long deviceId, ModelMap mmap) {
    public String listData(NyysJzjlDeviceTree nyysJzjlDeviceTree, ModelMap mmap) {

        //供水单位行
        List<NyysJzjlDeviceTree> unitList = nyysJzjlDeviceTreeService.selectNyysJzjlUnitList(nyysJzjlDeviceTree);

        //灌片行
        List<NyysJzjlDeviceTree> areaList = nyysJzjlDeviceTreeService.selectNyysJzjlAreaList(nyysJzjlDeviceTree);

        //水表行
        List<NyysJzjlDeviceTree> deviceList = nyysJzjlDeviceTreeService.selectNyysJzjlAreaDeviceList(nyysJzjlDeviceTree);

        mmap.put("devicelist", deviceList);
        //初始化数据
        for (NyysJzjlDeviceTree unit : unitList) {
            if (unit.getUnitName() == null) {
                unit.setUnitName("-");
            }
            if (unit.getAreaCount() == null) {
                unit.setAreaCount(0);
            }
            if (unit.getDeviceCount() == null) {
                unit.setDeviceCount(0);
            }
            if (unit.getItemCount() == null) {
                unit.setItemCount(0);
            }
            if (unit.getItemArea() == null) {
                unit.setItemArea(new BigDecimal(0.00));
            }
            if (unit.getBillCount() == null) {
                unit.setBillCount(0);
            }
            if (unit.getBillAmount() == null) {
                unit.setBillAmount(new BigDecimal(0.00));
            }
            if(unit.getQuotaAmountSum()==null){
                unit.setQuotaAmountSum(new BigDecimal(0.00));
            }

        }


        //初始化数据
        for (NyysJzjlDeviceTree area : areaList) {
            if (area.getAreaName() == null) {
                area.setAreaName("-");
            }
            if (area.getDeviceCount() == null) {
                area.setDeviceCount(0);
            }
            if (area.getItemCount() == null) {
                area.setItemCount(0);
            }
            if (area.getItemArea() == null) {
                area.setItemArea(new BigDecimal(0.00));
            }
            if (area.getBillCount() == null) {
                area.setBillCount(0);
            }
            if (area.getBillAmount() == null) {
                area.setBillAmount(new BigDecimal(0.00));
            }
            if(area.getQuotaAmountSum()==null){
                area.setQuotaAmountSum(new BigDecimal(0.00));
            }

        }

        //初始化数据
        for (NyysJzjlDeviceTree device : deviceList) {
            if (device.getDeviceDesc() == null) {
                device.setDeviceDesc("-");
            }
            if (device.getItemCount() == null) {
                device.setItemCount(0);
            }
            if (device.getItemArea() == null) {
                device.setItemArea(new BigDecimal(0.00));
            }
            if (device.getBillCount() == null) {
                device.setBillCount(0);
            }
            if (device.getBillAmount() == null) {
                device.setBillAmount(new BigDecimal(0.00));
            }
            if(device.getQuotaAmount()==null){
                device.setQuotaAmount(new BigDecimal(0.00));
            }
        }


//        Map<Object, Object> areamap = new HashMap<>();
        // key 为unitId,value 为单位下的灌片
        Map<Long, List<NyysJzjlDeviceTree>> areamap = new HashMap<>();
//        Map<Object, Object> devicemap = new HashMap<>();
        // key 为areaId,value 为灌片下的水表
        Map<Long, List<NyysJzjlDeviceTree>> devicemap = new HashMap<>();
        //遍历供水单位获取unitId
//        for (NyysJzjlDeviceTree unit : unitList) {
//             Long unitId = unit.getUnitId();
//        }
        for (NyysJzjlDeviceTree area : areaList) {
            //如果供水单位Id与灌片供水单位Id相同,以供水单位Id作为key得到对应灌片数据
            if(!areamap.containsKey(area.getUnitId())){
                areamap.put(area.getUnitId(), new ArrayList<>());
            }
            areamap.get(area.getUnitId()).add(area);
        }
        for (NyysJzjlDeviceTree device : deviceList) {
            //如果水表的areaId与灌片的areaId相同,以灌片的areaId作为key 得到水表数据
            if(!devicemap.containsKey(device.getAreaId())){
                devicemap.put(device.getAreaId(), new ArrayList<>());
            }
            devicemap.get(device.getAreaId()).add(device);
        }

        // 计算跨行的数量
        for (NyysJzjlDeviceTree unit : unitList) {
            List<NyysJzjlDeviceTree> aList = areamap.get(unit.getUnitId());
            int areaCount = 0;
            int deviceCount = 0;
            if(aList==null){
                areaCount=0;
            }else {
               areaCount+=aList.size();
            for (NyysJzjlDeviceTree area : aList){
                    List dList = devicemap.get(area.getAreaId());
                    deviceCount += dList == null ? 0 : dList.size();
            }
            }
            unit.setRowCount(1+areaCount+deviceCount);
        }

        mmap.put("unitList", unitList);
        mmap.put("areamap", areamap);
        mmap.put("devicemap", devicemap);
//        logger.info(String.valueOf(mmap));
        return prefix + "/list_data";
    }


}

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
        PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.yunfang.nyys.mapper.NyysJzjlDeviceTreeMapper">

    <resultMap type="NyysJzjlDeviceTree" id="NyysJzjlDeviceTreeResult">
        <result property="unitId" column="unit_id"/>
        <result property="unitName" column="unit_name"/>
        <result property="areaId" column="area_id"/>
        <result property="areaName" column="area_name"/>
        <result property="deviceId" column="device_id"/>
        <result property="deviceDesc" column="device_desc"/>
        <result property="deptId" column="dept_id"/>
        <result property="status" column="status"/>


        <result property="areaCount" column="area_count"/>
        <result property="deviceCount" column="device_count"/>
        <result property="itemCount" column="item_count"/>
        <result property="itemArea" column="item_area"/>
        <result property="billCount" column="bill_count"/>
        <result property="billAmount" column="bill_amount"/>
        <result property="billAmount" column="bill_amount"/>
        <result property="quotaAmount" column="quota_amount"/>
        <result property="quotaYear" column="quota_year"/>
        <result property="quotaAmountSum" column="quota_amount_sum"/>
    </resultMap>
    <sql id="selectNyysJzjlUnitListVo">
        SELECT DISTINCT f.*
        FROM (select (SELECT count(area_id) from nyys_jzjl_area area where unit.unit_id = area.unit_id) as area_count,
                     (select count(1)
                      from nyys_jzjl_area_device device
                      where unit.unit_id = device.unit_id)                                              as device_count,


                     (select count(1)
                      from nyys_jzjl_area_device device
                               join nyys_jzjl_area_device_item item on device.device_id = item.device_id
                      where unit.unit_id = device.unit_id)                                              as item_count,


                     (select sum(fitem.land_area)
                      from nyys_jzjl_area_device device
                               join nyys_jzjl_area_device_item item on device.device_id = item.device_id
                               join nyys_farmer_item fitem on item.item_id = fitem.item_id
                      where unit.unit_id = device.unit_id)                                              as item_area,
                     (select count(bill_id)
                      from nyys_jzjl_bill bill
                      WHERE bill.unit_id = unit.unit_id)                                                as bill_count,
                     (select sum(bill_amount)
                      from nyys_jzjl_bill bill
                      WHERE bill.unit_id = unit.unit_id)                                                as bill_amount,
                     (select sum(quota.quota_amount)
                      from nyys_jzjl_area_device device
                               join nyys_jzjl_area_device_quota quota on device.device_id = quota.device_id
                      where unit.unit_id = device.unit_id)                                              as quota_amount_sum,

                     (select quota.quota_year
                      from nyys_jzjl_area_device device
                               join nyys_jzjl_area_device_quota quota on device.device_id = quota.device_id
                      where unit.unit_id = device.unit_id)                                              as quota_year,
                     unit_id,
                     unit_name,
                     dept_id,
                     status
              from nyys_jzjl_unit unit) f
                 join nyys_jzjl_area n on f.unit_id = n.unit_id
    </sql>

    <sql id="selectNyysJzjlAreaVo">
        select area_id,
               area_name,
               unit_id,
               dept_id,
               status,
               (select unit_name from nyys_jzjl_unit unit where unit.unit_id = area.unit_id)           as unit_name,
               (select count(1) from nyys_jzjl_area_device device where area.area_id = device.area_id) as device_count,
               (select count(1)
                from nyys_jzjl_area_device device
                         join nyys_jzjl_area_device_item item on device.device_id = item.device_id
                where area.area_id = device.area_id)                                                   as item_count,
               (select sum(fitem.land_area)
                from nyys_jzjl_area_device device
                         join nyys_jzjl_area_device_item item on device.device_id = item.device_id
                         join nyys_farmer_item fitem on item.item_id = fitem.item_id
                where area.area_id = device.area_id)                                                   as item_area,
               (select count(bill_id) from nyys_jzjl_bill bill WHERE bill.area_id = area.area_id)      as bill_count,
               (select sum(bill_amount) from nyys_jzjl_bill bill WHERE bill.area_id = area.area_id)    as bill_amount,

               (select sum(quota.quota_amount)
                from nyys_jzjl_area_device device
                         join nyys_jzjl_area_device_quota quota on device.device_id = quota.device_id
                where area.area_id = device.area_id)                                                   as quota_amount,
               (select quota.quota_year
                from nyys_jzjl_area_device device
                         join nyys_jzjl_area_device_quota quota on device.device_id = quota.device_id
                where area.area_id = device.area_id)                                                   as quota_year
        from nyys_jzjl_area area
    </sql>

    <sql id="selectNyysJzjlAreaDeviceVo">
        select device_id,
               device_desc,
               area_id,
               unit_id,
               dept_id,
               status,
               (select area_name from nyys_jzjl_area area where area.area_id = areadevice.area_id) as area_name,

               (select unit_name
                from nyys_jzjl_unit unit
                where unit.unit_id = areadevice.unit_id)                                           as unit_name,
               (select count(1)
                from nyys_jzjl_area_device_item item
                where areadevice.device_id = item.device_id)                                       as item_count,
               (select sum(fitem.land_area)
                from nyys_jzjl_area_device_item item
                         join nyys_farmer_item fitem on item.item_id = fitem.item_id
                where areadevice.device_id = item.device_id)                                       as item_area,
               (select count(bill_id)
                from nyys_jzjl_bill bill
                WHERE bill.device_id = areadevice.device_id)                                       as bill_count,
               (select sum(bill_amount)
                from nyys_jzjl_bill bill
                WHERE bill.device_id = areadevice.device_id)                                       as bill_amount,
               (select quota_amount
                from nyys_jzjl_area_device_quota quota
                where quota.device_id = areadevice.device_id)                                      as quota_amount,
               (select quota_year
                from nyys_jzjl_area_device_quota quota
                where quota.device_id = areadevice.device_id)                                      as quota_year
        from nyys_jzjl_area_device areadevice
    </sql>

    <select id="selectNyysJzjlUnitList" parameterType="NyysJzjlDeviceTree" resultMap="NyysJzjlDeviceTreeResult">
        <include refid="selectNyysJzjlUnitListVo"/>
        <where>
            <if test="unitName != null  and unitName != ''">and f.unit_name like concat('%', #{unitName}, '%')</if>
            <if test="deptId != null ">and f.dept_id = #{deptId}</if>
            <if test="status != null  and status != ''">and f.status = #{status}</if>
            <if test="status != null  and status != ''">and f.quota_amount_sum = #{quotaAmountSum}</if>
            <if test="status != null  and status != ''">and f.quota_year = #{quotaYear}</if>
            <if test="params.level != null and params.level != ''">
                <if test="params.level == 0">
                    and f.unit_id= #{params.id}
                </if>
            </if>
            <!-- 数据范围过滤 -->
            ${params.dataScope}

        </where>
        group by f.unit_id

    </select>

    <select id="selectNyysJzjlUnitById" parameterType="Long" resultMap="NyysJzjlDeviceTreeResult">
        <include refid="selectNyysJzjlUnitListVo"/>
        where f.unit_id = #{unitId}
    </select>

    <select id="selectNyysJzjlAreaList" parameterType="NyysJzjlDeviceTree" resultMap="NyysJzjlDeviceTreeResult">
        <include refid="selectNyysJzjlAreaVo"/>
        <where>
            <if test="areaName != null  and areaName != ''">and area_name like concat('%', #{areaName}, '%')</if>
            <if test="unitId != null ">and unit_id = #{unitId}</if>
            <if test="deptId != null ">and dept_id in (select dept_id from sys_dept where dept_id = #{deptId} or
                find_in_set(#{deptId}, ancestors))
            </if>
            <if test="status != null  and status != ''">and status = #{status}</if>
            <if test="status != null  and status != ''">and quota_amount_sum = #{quotaAmountSum}</if>
            <if test="status != null  and status != ''">and quota_year = #{quotaYear}</if>
            <if test="params.level != null and params.level != ''">
                <if test="params.level == 0">
                    and area.unit_id= #{params.id}
                </if>
                <if test="params.level == 1">
                    and area.area_id= #{params.id}
                </if>

            </if>
            <!-- 数据范围过滤 -->
            ${params.dataScope}
        </where>
    </select>

    <select id="selectNyysJzjlAreaById" parameterType="Long" resultMap="NyysJzjlDeviceTreeResult">
        <include refid="selectNyysJzjlAreaVo"/>
        where area_id = #{areaId}
    </select>


    <select id="selectNyysJzjlAreaDeviceList" parameterType="NyysJzjlDeviceTree" resultMap="NyysJzjlDeviceTreeResult">
        <include refid="selectNyysJzjlAreaDeviceVo"/>
        <where>
            <if test="areaId != null ">and area_id = #{areaId}</if>
            <if test="unitId != null ">and unit_id = #{unitId}</if>
            <if test="deptId != null ">and dept_id = #{deptId}</if>
            <if test="status != null  and status != ''">and status = #{status}</if>
            <if test="status != null  and status != ''">and quota_amount = #{quotaAmount}</if>
            <if test="status != null  and status != ''">and quota_year = #{quotaYear}</if>
            <if test="params.level != null and params.level != ''">
                <if test="params.level == 0">
                    and areadevice.unit_id= #{params.id}
                </if>
                <if test="params.level == 1">
                    and areadevice.area_id= #{params.id}
                </if>
                <if test="params.level == 2">
                    and areadevice.device_id= #{params.id}
                </if>
            </if>
            <!-- 数据范围过滤 -->
            ${params.dataScope}
        </where>

    </select>

    <select id="selectNyysJzjlAreaDeviceById" parameterType="String" resultMap="NyysJzjlDeviceTreeResult">
        <include refid="selectNyysJzjlAreaDeviceVo"/>
        where device_id = #{deviceId}
    </select>
</mapper>
<div id="table" class="wrapper wrapper-content animated fadeInRight" xmlns:th="http://www.thymeleaf.org">
  <meta charset="UTF-8">
  <style type="text/css">
    /* TABLES */
    .excelTableHead {
      color: black;
      margin-bottom: 6px;
    }

    .excelTable {
      width: auto;
      font-size: 13px;
      color: black;
      border: 1px solid #333333;
    }

    .excelTable > thead > tr > th, .excelTable > thead > tr > td {
      background-color: #333333;
      border-bottom-width: 1px;
    }

    .excelTable > thead > tr > th, .excelTable > tbody > tr > th, .excelTable > tfoot > tr > th, .excelTable > thead > tr > td, .excelTable > tbody > tr > td, .excelTable > tfoot > tr > td {
      border: 1px solid #333333;
    }

    .excelTableFoot {
      color: black;
    }

    @media print {
      #alert_danger {
        display: none;
      }
    }

    table td {
      max-width: 200px;
      max-height: 50px;
      word-wrap: break-word;
      text-overflow: ellipsis;
      white-space: nowrap;
      overflow: hidden;
      page: true;
    }

    table td:hover {
      white-space: normal;
      overflow: auto;
    }


  </style>
  <table id="reportHead" class="excelTableHead" style="width: 100%" th:with="maxcols=41">
    <tr>
      <td th:colspan="7" align="center" style="font-size: 26px; font-weight: 700; padding-bottom: 6px">
        水表树账单统计表
      </td>
    </tr>

  </table>
  <table id="report" class="table excelTable" billstandardborder="1" cellspacing="0" cellpadding="0"
         style="width: 100%">
    <tr>
      <td style="font-weight: 700;white-space: nowrap;" align="center">供水管理单位</td>
      <td style="font-weight: 700;white-space: nowrap;" align="center">灌片</td>
      <td style="font-weight: 700;white-space: nowrap;" align="center">水表</td>
      <td style="font-weight: 700;white-space: nowrap;" align="center">地块</td>
      <td style="font-weight: 700;white-space: nowrap;" align="center">地块面积(㎡)</td>
      <td style="font-weight: 700;white-space: nowrap;" align="center">账单</td>
      <td style="font-weight: 700;white-space: nowrap;" align="center">账单累计</td>
      <td style="font-weight: 700;white-space: nowrap;" align="center">定额数</td>
<!--      <td style="font-weight: 700;white-space: nowrap;" align="center">年份</td>-->
    </tr>

    <th:block th:each="unit:${unitList}" th:with="areaList=${areamap.get(unit.unitId)}">
      <tr>
        <td align="center" th:rowspan="${unit.rowCount}">
          [[${unit.unitName}]]
        </td>
        <td align="center">[[${unit.areaCount}]]</td>
        <td align="center">[[${unit.deviceCount}]]</td>
        <td align="center">[[${unit.itemCount}]]</td>
        <td align="center">[[${unit.itemArea}]]</td>
        <td align="center">[[${unit.billCount}]]</td>
        <td align="center">[[${unit.billAmount}]]</td>
        <td align="center">[[${unit.quotaAmountSum}]]</td>
<!--        <td align="center">[[${unit.quotaYear}]]</td>-->
      </tr>

      <th:block th:each="area:${areaList}" th:with="deviceList=${devicemap.get(area.areaId)}" >
        <tr >
          <td align="center" th:rowspan="${deviceList==null?1:deviceList.size()+1}">
            [[${area.areaName}]]
          </td>
          <td align="center">[[${area.deviceCount}]]</td>
          <td align="center">[[${area.itemCount}]]</td>
          <td align="center">[[${area.itemArea}]]</td>
          <td align="center">[[${area.billCount}]]</td>
          <td align="center">[[${area.billAmount}]]</td>
          <td align="center">[[${area.quotaAmountSum}]]</td>
<!--          <td align="center">[[${area.quotaYear}]]</td>-->
        </tr>

        <tr th:if="${deviceList!=null}" th:each="device:${deviceList}" >
          <td align="center">[[${device.deviceId}]]-[[${device.deviceDesc}]]</td>
          <td align="center">[[${device.itemCount}]]</td>
          <td align="center">[[${device.itemArea}]]</td>
          <td align="center">[[${device.billCount}]]</td>
          <td align="center">[[${device.billAmount}]]</td>
          <td align="center">[[${device.quotaAmount}]]</td>
<!--          <td align="center">[[${device.quotaYear}]]</td>-->
        </tr>
      </th:block>

    </th:block>
  </table>

</div>


<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
<head>
  <meta charset="UTF-8">
  <th:block th:include="include :: header('水表账单')" />
</head>
<body class="gray-bg">
<div class="container-div">
  <div class="row">
    <div class="col-sm-12 search-collapse">
      <form id="formId">
        <div class="select-list">
          <ul>
            <li>
              <label>水表:</label>
              <div class="input-group tree-selector" style="">
                <input id="treeId" name="params[id]" type="hidden"/>
                <input id="treeLevel" name="params[level]" type="hidden"/>
                <input type="text" id="treeName" class="tree-label" onclick="$.widget.selectDeviceTree(title)" readonly="true" value="" placeholder="点击选择"/>
                <span class="input-group-addon"><i class="fa fa-search"></i></span>
              </div>
            </li>
            <li>
              <label>年份:</label>
              <select name="quotaYear" th:with="type=${@dict.getType('quota_year')}">
                <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:selected="${dict.dictValue}==${year}"></option>
              </select>
            </li>
            <li>
              <a class="btn btn-primary btn-rounded btn-sm" onclick="load()"><i class="fa fa-search"></i>&nbsp;搜索</a>
              <a class="btn btn-info btn-rounded btn-sm" onclick="toExcel()"><i class="fa fa-download"></i>&nbsp;导出</a>
              <a id="dlink"  style="display:none;"></a>
            </li>
          </ul>
        </div>
      </form>
    </div>
    <div class="btn-group-sm" id="toolbar" role="group"></div>
    <div class="col-sm-12 select-table" style="overflow-x: scroll"></div>
  </div>
</div>
<th:block th:include="include :: footer" />
<script th:src="@{/js/nyys-ext.js?v=2022808}"></script>
<script type="text/javascript" th:inline="javascript">

  function reset(){
    load();
  }

  function load(){
    $.modal.loading("正在查询,请稍后...");
    var treeId= $('#treeId').val();
    var treeLevel= $('#treeLevel').val();
    // var params = "";
    // if(treeLevel== 0){ // 供水单位
    //   params = "?unitId="+treeId;
    // }else if(treeLevel== 1){ // 灌片
    //   params = "?areaId="+treeId;
    // }else if(treeLevel== 2){ //水表
    //   params = "?deviceId="+treeId;
    // }
    // var url = ctx + "/nyys/jzjldevicetree/list/data"+params;
    // 方法二
    var params = {};
    if(treeLevel== 0){ // 供水单位
      params = {unitId: treeId}
    }else if(treeLevel== 1){ // 灌片
      params = {areaId: treeId}
    }else if(treeLevel== 2){ //水表
      params = {deviceId: treeId}
    }
    var url = ctx + "/nyys/jzjldevicetree/list/data";
    $(".select-table").load(url, params, function (responseTxt,statusTxt,xhr) {

      if (statusTxt === 'success') {
        $.modal.closeLoading();
      }
    });
  }

  function toExcel(){
    $.widget.tableToExcel('report','reportHead','reportFoot',
            $("#reportYear").text()+"年",
            "水表树账单统计表");
  }

  $(function(){
    reset();
  })
</script>
</body>
</html>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值