2021-05-24个人总结


系统

  1. 修改bucket表,增加了type字段,用于保存bucket的类型,方便计费时进行查找
    在这里插入图片描述

  2. 编写计费系统,增加文件及流统计大小的工具类

  3. 增加price表,用于保存价格信息

create table price
(
    id       int auto_increment
        primary key,
    platform varchar(10) not null,
    type     int         not null,
    price    double      not null
);
  1. 增加计费系统 增加history表,增加price表 增加工具类
create table history
(
    id         int auto_increment
        primary key,
    url        varchar(255)   null,
    user       int            null,
    size       double(22, 15) null,
    price      double(22, 15) null,
    time       varchar(255)   null,
    type       int            null,
    bucketName varchar(255)   null,
    platform   varchar(10)    null,
    ud         varchar(10)    null
);

云平台接入

  1. 修改bucket平台的判断逻辑,由之前的通过数据库查找每个用户的平台改变为通过bucketName来查找对应的平台并执行操作。
  2. 接入桶的标签的云平台操作的接口

接口展示

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值