java做抢票系统_java论坛,用java做的论坛系统

2a1cf1a4e4588ff4d1f2a92703f4bb10.png

论坛部分截图

81f45a8e6e743c5d0b17642847901f61.png

论坛部分截图

美食论坛系统设计与实现mysql数据库版本源码:

超级管理员表创建语句如下:

create table t_admin(id int primary key auto_increment comment '主键',username varchar(100) comment '超级管理员账号',password varchar(100) comment '超级管理员密码') comment '超级管理员';insert into t_admin(username,password) values('admin','123456');

收货地址表创建语句如下:

create table t_address(id int primary key auto_increment comment '主键',customerId int comment '用户',province varchar(100) comment '省',city varchar(100) comment '市',area varchar(100) comment '区',phone varchar(100) comment '电话',lxr varchar(100) comment '联系人',xxdz varchar(100) comment '详细地址') comment '收货地址';

分类表创建语句如下:

create table t_bk(id int primary key auto_increment comment '主键',bkName varchar(100) comment '分类名称') comment '分类';

标签表创建语句如下:

create table t_bq(id int primary key auto_increment comment '主键',bqName varchar(100) comment '标签') comment '标签';

建议表创建语句如下:

create table t_contact(id int primary key auto_increment comment '主键',customerId int comment '用户',phone varchar(100) comment '联系方式',content varchar(100) comment '内容',insertDate datetime comment '日期') comment '建议';
9f42e4d715927a5eb8bd3aca11f66e02.png

客户表创建语句如下:

create table t_customer(id int primary key auto_increment comment '主键',username varchar(100) comment '账号',password varchar(100) comment '密码',customerName varchar(100) comment '姓名',sex varchar(100) comment '性别',address varchar(100) comment '地址',phone varchar(100) comment '手机',account int comment '账户',jf int comment '积分',headPic varchar(100) comment '头像') comment '客户';

积分兑换产品表创建语句如下:

create table t_jfdh(id int primary key auto_increment comment '主键',jfName varchar(100) comment '积分产品名称',jfCost int comment '积分数量',jfPic varchar(100) comment '产品图片') comment '积分兑换产品';

库存表创建语句如下:

create table t_kc(id int primary key auto_increment comment '主键',productId int comment '产品',kcNum int comment '库存数量',insertDate datetime comment '日期') comment '库存';

轮播图表创建语句如下:

create table t_lbt(id int primary key auto_increment comment '主键',pic varchar(100) comment '图片') comment '轮播图';

信息交流表创建语句如下:

create table t_message(id int primary key auto_increment comment '主键',customerId int comment '用户',messageContent varchar(100) comment '内容',types int comment '',insertDate datetime comment '时间') comment '信息交流';

订单表创建语句如下:

create table t_order(id int primary key auto_increment comment '主键',customerId int comment '用户',productDetail varchar(100) comment '订单详细',allPrice varchar(100) comment '订单总价格',status varchar(100) comment '状态',orderNum varchar(100) comment '订单编号',pl varchar(100) comment '物流信息',insertDate datetime comment '日期',userId int comment '',orderDate varchar(100) comment '',address varchar(100) comment '地址',lxr varchar(100) comment '联系人',lxfs varchar(100) comment '联系方式',pj varchar(100) comment '评价',back varchar(100) comment '回复') comment '订单';
51119dbe8be14c818939ee5e00dc7cd4.png

订单详情表创建语句如下:

create table t_orderlist(id int primary key auto_increment comment '主键',customerId int comment '用户',orderId int comment '订单',productId int comment '菜品') comment '订单详情';

评论表创建语句如下:

create table t_pinglun(id int primary key auto_increment comment '主键',wdxxId int comment '评论信息',customerId int comment '评论人',content varchar(100) comment '评论内容',insertDate datetime comment '评论日期') comment '评论';

表创建语句如下:

create table t_pinglun_product(id int primary key auto_increment comment '主键',productId int comment '评论信息',customerId int comment '评论人',content varchar(100) comment '评论内容',insertDate datetime comment '评论日期') comment '';

产品表创建语句如下:

create table t_product(id int primary key auto_increment comment '主键',productName varchar(100) comment '产品名称',productPic1 varchar(100) comment '图片1',productPic2 varchar(100) comment '图片2',productPic3 varchar(100) comment '图片3',productPic4 varchar(100) comment '图片4',price int comment '价格',oldPrice int comment '原价',content varchar(100) comment '内容',nums int comment '数量',tjxj varchar(100) comment '推荐星级',status varchar(100) comment '状态',typesId int comment '分类',jf int comment '积分',userId int comment '商家',bqId int comment '标签',djl int comment '点击量',isSale varchar(100) comment '') comment '产品';

产品点击表创建语句如下:

create table t_productclick(id int primary key auto_increment comment '主键',productId int comment '产品',customerId int comment '用户',insertDate datetime comment '日期') comment '产品点击';

收藏表创建语句如下:

create table t_sc(id int primary key auto_increment comment '主键',customerId int comment '用户',productId int comment '产品',insertDate datetime comment '日期') comment '收藏';

购物车表创建语句如下:

create table t_shopcar(id int primary key auto_increment comment '主键',productId int comment '产品',num int comment '数量',customerId int comment '') comment '购物车';

分类表创建语句如下:

create table t_types(id int primary key auto_increment comment '主键',typesName varchar(100) comment '分类') comment '分类';

普通员工表创建语句如下:

create table t_user(id int primary key auto_increment comment '主键',username varchar(100) comment '账号',password varchar(100) comment '密码',name varchar(100) comment '姓名',gh varchar(100) comment '工号',mobile varchar(100) comment '手机') comment '普通员工';
53c95dff9537079220e449eb03524619.png

我的消息表创建语句如下:

create table t_wdxx(id int primary key auto_increment comment '主键',customerId int comment '我',title varchar(100) comment '标题',pic varchar(100) comment '图片',content varchar(100) comment '内容',zan int comment '赞',insertDate datetime comment '发布日期',nologin varchar(100) comment '游客是否可见',bkId int comment '') comment '我的消息';

消息表创建语句如下:

create table t_xiaoxi(id int primary key auto_increment comment '主键',customerId int comment '用户',title varchar(100) comment '标题',content varchar(100) comment '内容',insertDate datetime comment '日期') comment '消息';

资讯表创建语句如下:

create table t_zx(id int primary key auto_increment comment '主键',title varchar(100) comment '标题',content varchar(100) comment '内容',pic varchar(100) comment '图片') comment '资讯';

美食论坛系统设计与实现oracle数据库版本源码:

超级管理员表创建语句如下:

create table t_admin(id integer,username varchar(100),password varchar(100));insert into t_admin(id,username,password) values(1,'admin','123456');--超级管理员字段加注释comment on column t_admin.id is '主键';comment on column t_admin.username is '超级管理员账号';comment on column t_admin.password is '超级管理员密码';--超级管理员表加注释comment on table t_admin is '超级管理员';

收货地址表创建语句如下:

create table t_address(id integer,customerId int,province varchar(100),city varchar(100),area varchar(100),phone varchar(100),lxr varchar(100),xxdz varchar(100));--收货地址字段加注释comment on column t_address.id is '主键';comment on column t_address.customerId is '用户';comment on column t_address.province is '省';comment on column t_address.city is '市';comment on column t_address.area is '区';comment on column t_address.phone is '电话';comment on column t_address.lxr is '联系人';comment on column t_address.xxdz is '详细地址';--收货地址表加注释comment on table t_address is '收货地址';

分类表创建语句如下:

create table t_bk(id integer,bkName varchar(100));--分类字段加注释comment on column t_bk.id is '主键';comment on column t_bk.bkName is '分类名称';--分类表加注释comment on table t_bk is '分类';

标签表创建语句如下:

create table t_bq(id integer,bqName varchar(100));--标签字段加注释comment on column t_bq.id is '主键';comment on column t_bq.bqName is '标签';--标签表加注释comment on table t_bq is '标签';

建议表创建语句如下:

create table t_contact(id integer,customerId int,phone varchar(100),content varchar(100),insertDate datetime);--建议字段加注释comment on column t_contact.id is '主键';comment on column t_contact.customerId is '用户';comment on column t_contact.phone is '联系方式';comment on column t_contact.content is '内容';comment on column t_contact.insertDate is '日期';--建议表加注释comment on table t_contact is '建议';

客户表创建语句如下:

create table t_customer(id integer,username varchar(100),password varchar(100),customerName varchar(100),sex varchar(100),address varchar(100),phone varchar(100),account int,jf int,headPic varchar(100));--客户字段加注释comment on column t_customer.id is '主键';comment on column t_customer.username is '账号';comment on column t_customer.password is '密码';comment on column t_customer.customerName is '姓名';comment on column t_customer.sex is '性别';comment on column t_customer.address is '地址';comment on column t_customer.phone is '手机';comment on column t_customer.account is '账户';comment on column t_customer.jf is '积分';comment on column t_customer.headPic is '头像';--客户表加注释comment on table t_customer is '客户';

积分兑换产品表创建语句如下:

create table t_jfdh(id integer,jfName varchar(100),jfCost int,jfPic varchar(100));--积分兑换产品字段加注释comment on column t_jfdh.id is '主键';comment on column t_jfdh.jfName is '积分产品名称';comment on column t_jfdh.jfCost is '积分数量';comment on column t_jfdh.jfPic is '产品图片';--积分兑换产品表加注释comment on table t_jfdh is '积分兑换产品';

库存表创建语句如下:

create table t_kc(id integer,productId int,kcNum int,insertDate datetime);--库存字段加注释comment on column t_kc.id is '主键';comment on column t_kc.productId is '产品';comment on column t_kc.kcNum is '库存数量';comment on column t_kc.insertDate is '日期';--库存表加注释comment on table t_kc is '库存';

轮播图表创建语句如下:

create table t_lbt(id integer,pic varchar(100));--轮播图字段加注释comment on column t_lbt.id is '主键';comment on column t_lbt.pic is '图片';--轮播图表加注释comment on table t_lbt is '轮播图';

信息交流表创建语句如下:

create table t_message(id integer,customerId int,messageContent varchar(100),types int,insertDate datetime);--信息交流字段加注释comment on column t_message.id is '主键';comment on column t_message.customerId is '用户';comment on column t_message.messageContent is '内容';comment on column t_message.types is '';comment on column t_message.insertDate is '时间';--信息交流表加注释comment on table t_message is '信息交流';

订单表创建语句如下:

create table t_order(id integer,customerId int,productDetail varchar(100),allPrice varchar(100),status varchar(100),orderNum varchar(100),pl varchar(100),insertDate datetime,userId int,orderDate varchar(100),address varchar(100),lxr varchar(100),lxfs varchar(100),pj varchar(100),back varchar(100));--订单字段加注释comment on column t_order.id is '主键';comment on column t_order.customerId is '用户';comment on column t_order.productDetail is '订单详细';comment on column t_order.allPrice is '订单总价格';comment on column t_order.status is '状态';comment on column t_order.orderNum is '订单编号';comment on column t_order.pl is '物流信息';comment on column t_order.insertDate is '日期';comment on column t_order.userId is '';comment on column t_order.orderDate is '';comment on column t_order.address is '地址';comment on column t_order.lxr is '联系人';comment on column t_order.lxfs is '联系方式';comment on column t_order.pj is '评价';comment on column t_order.back is '回复';--订单表加注释comment on table t_order is '订单';

订单详情表创建语句如下:

create table t_orderlist(id integer,customerId int,orderId int,productId int);--订单详情字段加注释comment on column t_orderlist.id is '主键';comment on column t_orderlist.customerId is '用户';comment on column t_orderlist.orderId is '订单';comment on column t_orderlist.productId is '菜品';--订单详情表加注释comment on table t_orderlist is '订单详情';

评论表创建语句如下:

create table t_pinglun(id integer,wdxxId int,customerId int,content varchar(100),insertDate datetime);--评论字段加注释comment on column t_pinglun.id is '主键';comment on column t_pinglun.wdxxId is '评论信息';comment on column t_pinglun.customerId is '评论人';comment on column t_pinglun.content is '评论内容';comment on column t_pinglun.insertDate is '评论日期';--评论表加注释comment on table t_pinglun is '评论';

表创建语句如下:

create table t_pinglun_product(id integer,productId int,customerId int,content varchar(100),insertDate datetime);--字段加注释comment on column t_pinglun_product.id is '主键';comment on column t_pinglun_product.productId is '评论信息';comment on column t_pinglun_product.customerId is '评论人';comment on column t_pinglun_product.content is '评论内容';comment on column t_pinglun_product.insertDate is '评论日期';--表加注释comment on table t_pinglun_product is '';

产品表创建语句如下:

create table t_product(id integer,productName varchar(100),productPic1 varchar(100),productPic2 varchar(100),productPic3 varchar(100),productPic4 varchar(100),price int,oldPrice int,content varchar(100),nums int,tjxj varchar(100),status varchar(100),typesId int,jf int,userId int,bqId int,djl int,isSale varchar(100));--产品字段加注释comment on column t_product.id is '主键';comment on column t_product.productName is '产品名称';comment on column t_product.productPic1 is '图片1';comment on column t_product.productPic2 is '图片2';comment on column t_product.productPic3 is '图片3';comment on column t_product.productPic4 is '图片4';comment on column t_product.price is '价格';comment on column t_product.oldPrice is '原价';comment on column t_product.content is '内容';comment on column t_product.nums is '数量';comment on column t_product.tjxj is '推荐星级';comment on column t_product.status is '状态';comment on column t_product.typesId is '分类';comment on column t_product.jf is '积分';comment on column t_product.userId is '商家';comment on column t_product.bqId is '标签';comment on column t_product.djl is '点击量';comment on column t_product.isSale is '';--产品表加注释comment on table t_product is '产品';

产品点击表创建语句如下:

create table t_productclick(id integer,productId int,customerId int,insertDate datetime);--产品点击字段加注释comment on column t_productclick.id is '主键';comment on column t_productclick.productId is '产品';comment on column t_productclick.customerId is '用户';comment on column t_productclick.insertDate is '日期';--产品点击表加注释comment on table t_productclick is '产品点击';

收藏表创建语句如下:

create table t_sc(id integer,customerId int,productId int,insertDate datetime);--收藏字段加注释comment on column t_sc.id is '主键';comment on column t_sc.customerId is '用户';comment on column t_sc.productId is '产品';comment on column t_sc.insertDate is '日期';--收藏表加注释comment on table t_sc is '收藏';

购物车表创建语句如下:

create table t_shopcar(id integer,productId int,num int,customerId int);--购物车字段加注释comment on column t_shopcar.id is '主键';comment on column t_shopcar.productId is '产品';comment on column t_shopcar.num is '数量';comment on column t_shopcar.customerId is '';--购物车表加注释comment on table t_shopcar is '购物车';

分类表创建语句如下:

create table t_types(id integer,typesName varchar(100));--分类字段加注释comment on column t_types.id is '主键';comment on column t_types.typesName is '分类';--分类表加注释comment on table t_types is '分类';

普通员工表创建语句如下:

create table t_user(id integer,username varchar(100),password varchar(100),name varchar(100),gh varchar(100),mobile varchar(100));--普通员工字段加注释comment on column t_user.id is '主键';comment on column t_user.username is '账号';comment on column t_user.password is '密码';comment on column t_user.name is '姓名';comment on column t_user.gh is '工号';comment on column t_user.mobile is '手机';--普通员工表加注释comment on table t_user is '普通员工';

我的消息表创建语句如下:

create table t_wdxx(id integer,customerId int,title varchar(100),pic varchar(100),content varchar(100),zan int,insertDate datetime,nologin varchar(100),bkId int);--我的消息字段加注释comment on column t_wdxx.id is '主键';comment on column t_wdxx.customerId is '我';comment on column t_wdxx.title is '标题';comment on column t_wdxx.pic is '图片';comment on column t_wdxx.content is '内容';comment on column t_wdxx.zan is '赞';comment on column t_wdxx.insertDate is '发布日期';comment on column t_wdxx.nologin is '游客是否可见';comment on column t_wdxx.bkId is '';--我的消息表加注释comment on table t_wdxx is '我的消息';

消息表创建语句如下:

create table t_xiaoxi(id integer,customerId int,title varchar(100),content varchar(100),insertDate datetime);--消息字段加注释comment on column t_xiaoxi.id is '主键';comment on column t_xiaoxi.customerId is '用户';comment on column t_xiaoxi.title is '标题';comment on column t_xiaoxi.content is '内容';comment on column t_xiaoxi.insertDate is '日期';--消息表加注释comment on table t_xiaoxi is '消息';

资讯表创建语句如下:

create table t_zx(id integer,title varchar(100),content varchar(100),pic varchar(100));--资讯字段加注释comment on column t_zx.id is '主键';comment on column t_zx.title is '标题';comment on column t_zx.content is '内容';comment on column t_zx.pic is '图片';--资讯表加注释comment on table t_zx is '资讯';

oracle特有,对应序列如下:

create sequence s_t_address;create sequence s_t_bk;create sequence s_t_bq;create sequence s_t_contact;create sequence s_t_customer;create sequence s_t_jfdh;create sequence s_t_kc;create sequence s_t_lbt;create sequence s_t_message;create sequence s_t_order;create sequence s_t_orderlist;create sequence s_t_pinglun;create sequence s_t_pinglun_product;create sequence s_t_product;create sequence s_t_productclick;create sequence s_t_sc;create sequence s_t_shopcar;create sequence s_t_types;create sequence s_t_user;create sequence s_t_wdxx;create sequence s_t_xiaoxi;create sequence s_t_zx;

美食论坛系统设计与实现sqlserver数据库版本源码:

超级管理员表创建语句如下:

--超级管理员create table t_admin(id int identity(1,1) primary key not null,--主键username varchar(100),--超级管理员账号password varchar(100)--超级管理员密码);insert into t_admin(username,password) values('admin','123456');
351ae167dbbf86c5e8875fce086eecdd.png

收货地址表创建语句如下:

--收货地址表注释create table t_address(id int identity(1,1) primary key not null,--主键customerId int,--用户province varchar(100),--省city varchar(100),--市area varchar(100),--区phone varchar(100),--电话lxr varchar(100),--联系人xxdz varchar(100)--详细地址);

分类表创建语句如下:

--分类表注释create table t_bk(id int identity(1,1) primary key not null,--主键bkName varchar(100)--分类名称);

标签表创建语句如下:

--标签表注释create table t_bq(id int identity(1,1) primary key not null,--主键bqName varchar(100)--标签);

建议表创建语句如下:

--建议表注释create table t_contact(id int identity(1,1) primary key not null,--主键customerId int,--用户phone varchar(100),--联系方式content varchar(100),--内容insertDate datetime--日期);

客户表创建语句如下:

--客户表注释create table t_customer(id int identity(1,1) primary key not null,--主键username varchar(100),--账号password varchar(100),--密码customerName varchar(100),--姓名sex varchar(100),--性别address varchar(100),--地址phone varchar(100),--手机account int,--账户jf int,--积分headPic varchar(100)--头像);

积分兑换产品表创建语句如下:

--积分兑换产品表注释create table t_jfdh(id int identity(1,1) primary key not null,--主键jfName varchar(100),--积分产品名称jfCost int,--积分数量jfPic varchar(100)--产品图片);

库存表创建语句如下:

--库存表注释create table t_kc(id int identity(1,1) primary key not null,--主键productId int,--产品kcNum int,--库存数量insertDate datetime--日期);

轮播图表创建语句如下:

--轮播图表注释create table t_lbt(id int identity(1,1) primary key not null,--主键pic varchar(100)--图片);

信息交流表创建语句如下:

--信息交流表注释create table t_message(id int identity(1,1) primary key not null,--主键customerId int,--用户messageContent varchar(100),--内容types int,--insertDate datetime--时间);

订单表创建语句如下:

--订单表注释create table t_order(id int identity(1,1) primary key not null,--主键customerId int,--用户productDetail varchar(100),--订单详细allPrice varchar(100),--订单总价格status varchar(100),--状态orderNum varchar(100),--订单编号pl varchar(100),--物流信息insertDate datetime,--日期userId int,--orderDate varchar(100),--address varchar(100),--地址lxr varchar(100),--联系人lxfs varchar(100),--联系方式pj varchar(100),--评价back varchar(100)--回复);
61f532d68e005ea5a52c64a2803ca41d.png

订单详情表创建语句如下:

--订单详情表注释create table t_orderlist(id int identity(1,1) primary key not null,--主键customerId int,--用户orderId int,--订单productId int--菜品);

评论表创建语句如下:

--评论表注释create table t_pinglun(id int identity(1,1) primary key not null,--主键wdxxId int,--评论信息customerId int,--评论人content varchar(100),--评论内容insertDate datetime--评论日期);

表创建语句如下:

--表注释create table t_pinglun_product(id int identity(1,1) primary key not null,--主键productId int,--评论信息customerId int,--评论人content varchar(100),--评论内容insertDate datetime--评论日期);

产品表创建语句如下:

--产品表注释create table t_product(id int identity(1,1) primary key not null,--主键productName varchar(100),--产品名称productPic1 varchar(100),--图片1productPic2 varchar(100),--图片2productPic3 varchar(100),--图片3productPic4 varchar(100),--图片4price int,--价格oldPrice int,--原价content varchar(100),--内容nums int,--数量tjxj varchar(100),--推荐星级status varchar(100),--状态typesId int,--分类jf int,--积分userId int,--商家bqId int,--标签djl int,--点击量isSale varchar(100)--);

产品点击表创建语句如下:

--产品点击表注释create table t_productclick(id int identity(1,1) primary key not null,--主键productId int,--产品customerId int,--用户insertDate datetime--日期);

收藏表创建语句如下:

--收藏表注释create table t_sc(id int identity(1,1) primary key not null,--主键customerId int,--用户productId int,--产品insertDate datetime--日期);

购物车表创建语句如下:

--购物车表注释create table t_shopcar(id int identity(1,1) primary key not null,--主键productId int,--产品num int,--数量customerId int--);

分类表创建语句如下:

--分类表注释create table t_types(id int identity(1,1) primary key not null,--主键typesName varchar(100)--分类);

普通员工表创建语句如下:

--普通员工表注释create table t_user(id int identity(1,1) primary key not null,--主键username varchar(100),--账号password varchar(100),--密码name varchar(100),--姓名gh varchar(100),--工号mobile varchar(100)--手机);

我的消息表创建语句如下:

--我的消息表注释create table t_wdxx(id int identity(1,1) primary key not null,--主键customerId int,--我title varchar(100),--标题pic varchar(100),--图片content varchar(100),--内容zan int,--赞insertDate datetime,--发布日期nologin varchar(100),--游客是否可见bkId int--);

消息表创建语句如下:

--消息表注释create table t_xiaoxi(id int identity(1,1) primary key not null,--主键customerId int,--用户title varchar(100),--标题content varchar(100),--内容insertDate datetime--日期);

资讯表创建语句如下:

--资讯表注释create table t_zx(id int identity(1,1) primary key not null,--主键title varchar(100),--标题content varchar(100),--内容pic varchar(100)--图片);
d7132989f08b08087f5c7d00cf62c523.png
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
jnu_forum是基于Java论坛系统。前端使用Html+CSS+JS实现,后端使用Java语言开发,技术栈包括但不限于Spring/SpringMVC/SpringBoot、MyBatis、Redis、PageHelper、MySQL、Maven等,开发工具为Eclipse。 功能 1、登录和注册 2、(分类)浏览话题 3、发表话题 4、上传照片 5、评论以及评论赞踩 6、站内信通知 7、用户积分排行榜 8、关注和共同关注 主要功能实现 1、登录注册:使用SpringSecurity4框架,即使用已经包装好的接口来实现,简单易用。 2、上传照片:照片是存储在第三方服务器,即七牛云。 3、站内信通知:通过异步队列来实现的站内信通知,其中选择Redis来作为队列。 4、排行榜:排行榜是通过Redis的有序集合来实现的,可以快速实现topK排序。 5、关注和共同关注:通过Redis的集合数据结构实现。 页面展示 1、首页 2、注册 3、登录 4、话题浏览页面 5、话题详情页面与评论 6、个人简介页面 7、发表话题页面 8、站内信页面 9、照片墙页面 10、关注和粉丝界面 10、排行榜界面 备注: 1、本项目的Redis已经换成集群了,本地跑的时候先建立集群,否则自行将集群换成单机Redis,具体修改application.propertie和com.xzp.forum.util.JedisAdapter.java即可(再具体如何修改可以参考提交记录或联系我~) 2、因项目中七牛云过期了,上传的所有照片都失效了,所以项目中有照片的都被和谐了

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值