当前位置: 首页 > news >正文

开源项目-拍卖管理系统

哈喽,大家好,今天主要给大家带来一个开源项目-拍卖管理系统

拍卖管理系统主要有拍卖品管理,我的拍卖,拍卖详情,拍卖品信息修改,发布拍卖品等功能

登录

拍卖商品管理

主要用于查看、竞拍拍卖商品的信息

我的拍卖

展示用户当前的拍卖品,可以查看、下架和编辑拍卖商品的信息

拍卖详情

提供对特定拍卖品的详细信息,包括拍卖品描述、出价历史、拍卖时间等

拍卖品信息修改

可以修改拍卖品的详细信息,如描述、价格等

发布拍卖品

允许管用户创建并发布新的拍卖商品。

代码示例

package com.xxd.controller;import java.util.Date;
import java.util.List;import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;import com.xxd.pojo.Bid_xxd;
import com.xxd.pojo.Goods_xxd;
import com.xxd.pojo.User_xxd;
import com.xxd.service.BidService_xxd;
/*** *@Description 拍品记录控制器**/
@Controller
@RequestMapping("")
public class BidController_xxd {@AutowiredBidService_xxd bidservice_xxd;/*** 竞拍拍品*@param  request response session*@return*/@RequestMapping("jingpaiServlet_xxd")public ModelAndView aucitongoods(HttpServletRequest request,HttpServletResponse response, HttpSession session) {ModelAndView mav = new ModelAndView();String BidPrice_xxd = request.getParameter("BidPrice_xxd");String refresh_xxd = request.getParameter("refresh_xxd");String returnList_xxd = request.getParameter("returnList_xxd");String returnperList_xxd = request.getParameter("returnperList_xxd");if(BidPrice_xxd != null) {if(request.getParameter("sale_xxd") == "") {mav.setViewName("auction_xxd");return mav;}int goodsprice_xxd = Integer.parseInt(request.getParameter("sale_xxd"));int highestPrice_xxd = goodsprice_xxd;session.setAttribute("highestPrice_xxd", highestPrice_xxd);Bid_xxd bid_xxd = new Bid_xxd();User_xxd user_xxd = (User_xxd) session.getAttribute("user_xxd");Goods_xxd goods_xxd = (Goods_xxd) session.getAttribute("goods_xxd");bid_xxd.setUserId_xxd(user_xxd.getUserId_xxd());bid_xxd.setGoodsId_xxd(goods_xxd.getGoodsId_xxd());bid_xxd.setBidTime_xxd(new java.sql.Date(new Date().getTime()));bid_xxd.setBidPrice_xxd(goodsprice_xxd);bidservice_xxd.insert(bid_xxd);List<Bid_xxd> bidList_xxd = bidservice_xxd.getBidByGoodsId(goods_xxd.getGoodsId_xxd());session.setAttribute("bidList_xxd", bidList_xxd);mav.setViewName("auction_xxd");return mav;}else if(returnList_xxd != null) {mav.setViewName("list_xxd");return mav;}else if(returnperList_xxd != null){mav.setViewName("myauction_xxd");return mav;}else if(refresh_xxd != null){mav.setViewName("perauction_xxd");return mav;}return mav;}}

项目架构

项目通过SpringMVC+Mysql技术开发,需要通过tomcat启动项目

以上就是系统的大致内容了,感兴趣的同学可以通过连接下载源码~

http://www.lryc.cn/news/470652.html

相关文章:

  • Python小游戏14——雷霆战机
  • 81页PPT | 企业数字化底座与数字化转型方案
  • R语言笔记(五):Apply函数
  • Newsqueak:在 Go 之前的一门语言
  • 世界酒中国菜与另可数字平台达成战略合作
  • ElasticSearch基础篇——概念讲解,部署搭建,使用RestClient操作索引库和文档数据
  • k8s 二进制部署安装(一)
  • 115页PPT华为管理变革:制度创新与文化塑造的核心实践
  • ubuntu限制网速方法
  • 三品PLM研发管理系统:企业产品研发过程的得力助手
  • PyCharm 添加不了 Anaconda 环境
  • Leetcode 二叉树的右视图
  • console.log(“res.data = “ + JSON.stringify(res.data));
  • node和npm
  • 通过四元数求机器人本体坐标旋转量
  • CodeQL学习笔记(2)-QL语法(递归)
  • Video-XL:面向小时级视频理解的超长视觉语言模型
  • postgresql subtransaction以及他的效能
  • 新手逆向实战三部曲之二——通过更改关键跳注册软件(爆破)
  • 高级SQL技巧:提升数据查询与分析能力的关键
  • IntelliJ IDEA 安装 Maven 工具并更换阿里源
  • MIT 6.824 Lab1记录
  • C语言数据结构学习:[汇总]
  • unity游戏开发之塔防游戏
  • 前端项目接入sqlite轻量级数据库sql.js指南
  • 模拟退火算法(Simulated Annealing)详细解读
  • (二十一)、Docker 部署 Minikube 使用可视化管理工具 Kuboard
  • 代码编辑组件
  • 裴蜀定理与欧几里得算法——蓝桥杯真题中的应用
  • 冯诺依曼架构及CPU相关概念