做网站用百度百科的资料会侵权吗,网站制作那家便宜,首页优化的公司,律师做几个网站哈喽#xff0c;大家好#xff0c;今天主要给大家带来一个开源项目-拍卖管理系统
拍卖管理系统主要有拍卖品管理#xff0c;我的拍卖#xff0c;拍卖详情#xff0c;拍卖品信息修改#xff0c;发布拍卖品等功能
登录 拍卖商品管理
主要用于查看、竞拍拍卖商品的信息 我…哈喽大家好今天主要给大家带来一个开源项目-拍卖管理系统
拍卖管理系统主要有拍卖品管理我的拍卖拍卖详情拍卖品信息修改发布拍卖品等功能
登录 拍卖商品管理
主要用于查看、竞拍拍卖商品的信息 我的拍卖
展示用户当前的拍卖品可以查看、下架和编辑拍卖商品的信息 拍卖详情
提供对特定拍卖品的详细信息包括拍卖品描述、出价历史、拍卖时间等 拍卖品信息修改
可以修改拍卖品的详细信息如描述、价格等 发布拍卖品
允许管用户创建并发布新的拍卖商品。 代码示例
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);ListBid_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;}}项目架构
项目通过SpringMVCMysql技术开发需要通过tomcat启动项目 以上就是系统的大致内容了感兴趣的同学可以通过连接下载源码~