文末获取源码
开发语言:Java
框架:SSM
技术:Jsp
JDK版本:JDK1.8
服务器:tomcat7
数据库:mysql 5.7/8.0
数据库工具:Navicat11
开发软件:eclipse/myeclipse/idea
Maven包:Maven3.3.9
浏览器:谷歌浏览器
书画拍卖网站主要是为了用户方便对书画竞拍进行查看或者购买,也是为了更好的让管理员进行更好存储所有数据信息及快速方便的检索功能,对系统的各个模块是通过许多今天的发达系统做出合理的分析来确定考虑用户的可操作性,遵循开发的系统优化的原则,经过全面的调查和研究。
系统所要实现的功能分析,对于现在网络方便的管理,系统要实现用户可以直接在平台上进行查看首页、画作竞拍、画家介绍、书画界资讯、个人中心、后台管理,根据自己的需求可以进行查看书画拍卖信息等,这样既能节省用户的时间,不用在像传统的方式,需要查询、由于很多用户的时间的原因,没有办法去实体店进行查阅,真的很难去满足用户的各种需求。所以网上书画拍卖网站的开发不仅仅是能满足用户的需求,还能提高管理员的工作效率,减少原有不必要的工作量。
任何一个项目在开发研究前,都需要对研发系统本身的需求做一个认真的分析,市场的调研是不可忽视的,从实际场景中确定使用人员的功能需求,从而明确目标,对整个系统的开发有一个更加准确的定位。在这个章节,需要对系统的性能分析,业务流程分析,和数据等进行分析,书画拍卖网站的整体界面简单,功能完善。
(1)功能要求:个人中心、用户管理、画作竞拍管理、拍品类型管理、画家介绍管理、竞拍信息管理、成交订单管理、发货订单管理、确认订单管理、退货订单管理、系统管理等功能模块。
(2)性能:在不同操作系统上均能无差错实现在不同类型的用户登入相应界面后能不出差错、方便地进行预期操作。
(3)安全与保密要求:用户都必须通过管理员审核才能进入系统。
(4)环境要求:支持Windows系列、Vista系统等多种操作系统使用。
书画拍卖网站的主要开发目标如下:
(1)实现管理系统信息关系的系统化、规范化和自动化;
(2)减少维护人员的工作量以及实现用户对信息的控制和管理;
(3)方便查询信息及管理信息等;
(4)通过网络操作,提高改善处理问题和操作人员工作的效率;
(5)考虑到用户多样性特点,要求界面和操作简便易懂。
本书画拍卖网站系统采用SSM技术,Mysql数据库开发,充分保证了系统稳定性、完整性。
书画拍卖网站系统的设计与实现的设计思想如下:
1、操作简单方便、系统界面安全良好、简单明了的页面布局、方便查询管理相关信息。
2、即时可见:对书画拍卖网站系统信息的处理将立马在对应地点可以查询到,从而实现“即时发布、即时见效”的系统功能。
3、功能的完善性:可以管理管理员;个人中心、用户管理、画作竞拍管理、拍品类型管理、画家介绍管理、竞拍信息管理、成交订单管理、发货订单管理、确认订单管理、退货订单管理、系统管理,
用户;个人中心、竞拍信息管理、成交订单管理、发货订单管理、确认订单管理、退货订单管理,
前台首页;首页、画作竞拍、画家介绍、书画界资讯、个人中心、后台管理模块的修改维护操作。
首页
画作竞拍
画家介绍
画作竞拍管理
竞拍信息管理
成交订单管理
- /**
- * 画作竞拍
- * 后端接口
- * @author
- * @email
- * @date 2022-04-04 14:35:27
- */
- @RestController
- @RequestMapping("/huazuojingpai")
- public class HuazuojingpaiController {
- @Autowired
- private HuazuojingpaiService huazuojingpaiService;
-
-
- @Autowired
- private StoreupService storeupService;
-
-
-
-
- /**
- * 后端列表
- */
- @RequestMapping("/page")
- public R page(@RequestParam Map<String, Object> params,HuazuojingpaiEntity huazuojingpai,
- HttpServletRequest request){
-
- EntityWrapper<HuazuojingpaiEntity> ew = new EntityWrapper<HuazuojingpaiEntity>();
- PageUtils page = huazuojingpaiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, huazuojingpai), params), params));
- request.setAttribute("data", page);
- return R.ok().put("data", page);
- }
-
- /**
- * 前端列表
- */
- @IgnoreAuth
- @RequestMapping("/list")
- public R list(@RequestParam Map<String, Object> params,HuazuojingpaiEntity huazuojingpai,
- HttpServletRequest request){
- EntityWrapper<HuazuojingpaiEntity> ew = new EntityWrapper<HuazuojingpaiEntity>();
- PageUtils page = huazuojingpaiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, huazuojingpai), params), params));
- request.setAttribute("data", page);
- return R.ok().put("data", page);
- }
-
- /**
- * 列表
- */
- @RequestMapping("/lists")
- public R list( HuazuojingpaiEntity huazuojingpai){
- EntityWrapper<HuazuojingpaiEntity> ew = new EntityWrapper<HuazuojingpaiEntity>();
- ew.allEq(MPUtil.allEQMapPre( huazuojingpai, "huazuojingpai"));
- return R.ok().put("data", huazuojingpaiService.selectListView(ew));
- }
-
- /**
- * 查询
- */
- @RequestMapping("/query")
- public R query(HuazuojingpaiEntity huazuojingpai){
- EntityWrapper< HuazuojingpaiEntity> ew = new EntityWrapper< HuazuojingpaiEntity>();
- ew.allEq(MPUtil.allEQMapPre( huazuojingpai, "huazuojingpai"));
- HuazuojingpaiView huazuojingpaiView = huazuojingpaiService.selectView(ew);
- return R.ok("查询画作竞拍成功").put("data", huazuojingpaiView);
- }
-
- /**
- * 后端详情
- */
- @RequestMapping("/info/{id}")
- public R info(@PathVariable("id") Long id){
- HuazuojingpaiEntity huazuojingpai = huazuojingpaiService.selectById(id);
- huazuojingpai.setClicknum(huazuojingpai.getClicknum()+1);
- huazuojingpai.setClicktime(new Date());
- huazuojingpaiService.updateById(huazuojingpai);
- return R.ok().put("data", huazuojingpai);
- }
-
- /**
- * 前端详情
- */
- @IgnoreAuth
- @RequestMapping("/detail/{id}")
- public R detail(@PathVariable("id") Long id){
- HuazuojingpaiEntity huazuojingpai = huazuojingpaiService.selectById(id);
- huazuojingpai.setClicknum(huazuojingpai.getClicknum()+1);
- huazuojingpai.setClicktime(new Date());
- huazuojingpaiService.updateById(huazuojingpai);
- return R.ok().put("data", huazuojingpai);
- }
-
-
-
-
- /**
- * 后端保存
- */
- @RequestMapping("/save")
- public R save(@RequestBody HuazuojingpaiEntity huazuojingpai, HttpServletRequest request){
- huazuojingpai.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
- //ValidatorUtils.validateEntity(huazuojingpai);
-
- huazuojingpaiService.insert(huazuojingpai);
- return R.ok();
- }
-
- /**
- * 前端保存
- */
- @RequestMapping("/add")
- public R add(@RequestBody HuazuojingpaiEntity huazuojingpai, HttpServletRequest request){
- huazuojingpai.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
- //ValidatorUtils.validateEntity(huazuojingpai);
-
- huazuojingpaiService.insert(huazuojingpai);
- return R.ok();
- }
-
- /**
- * 修改
- */
- @RequestMapping("/update")
- public R update(@RequestBody HuazuojingpaiEntity huazuojingpai, HttpServletRequest request){
- //ValidatorUtils.validateEntity(huazuojingpai);
- huazuojingpaiService.updateById(huazuojingpai);//全部更新
- return R.ok();
- }
-
-
- /**
- * 删除
- */
- @RequestMapping("/delete")
- public R delete(@RequestBody Long[] ids){
- huazuojingpaiService.deleteBatchIds(Arrays.asList(ids));
- return R.ok();
- }
-
- /**
- * 提醒接口
- */
- @RequestMapping("/remind/{columnName}/{type}")
- public R remindCount(@PathVariable("columnName") String columnName, HttpServletRequest request,
- @PathVariable("type") String type,@RequestParam Map<String, Object> map) {
- map.put("column", columnName);
- map.put("type", type);
-
- if(type.equals("2")) {
- SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
- Calendar c = Calendar.getInstance();
- Date remindStartDate = null;
- Date remindEndDate = null;
- if(map.get("remindstart")!=null) {
- Integer remindStart = Integer.parseInt(map.get("remindstart").toString());
- c.setTime(new Date());
- c.add(Calendar.DAY_OF_MONTH,remindStart);
- remindStartDate = c.getTime();
- map.put("remindstart", sdf.format(remindStartDate));
- }
- if(map.get("remindend")!=null) {
- Integer remindEnd = Integer.parseInt(map.get("remindend").toString());
- c.setTime(new Date());
- c.add(Calendar.DAY_OF_MONTH,remindEnd);
- remindEndDate = c.getTime();
- map.put("remindend", sdf.format(remindEndDate));
- }
- }
-
- Wrapper<HuazuojingpaiEntity> wrapper = new EntityWrapper<HuazuojingpaiEntity>();
- if(map.get("remindstart")!=null) {
- wrapper.ge(columnName, map.get("remindstart"));
- }
- if(map.get("remindend")!=null) {
- wrapper.le(columnName, map.get("remindend"));
- }
-
-
- int count = huazuojingpaiService.selectCount(wrapper);
- return R.ok().put("count", count);
- }
-
-
- /**
- * 前端智能排序
- */
- @IgnoreAuth
- @RequestMapping("/autoSort")
- public R autoSort(@RequestParam Map<String, Object> params,HuazuojingpaiEntity huazuojingpai, HttpServletRequest request,String pre){
- EntityWrapper<HuazuojingpaiEntity> ew = new EntityWrapper<HuazuojingpaiEntity>();
- Map<String, Object> newMap = new HashMap<String, Object>();
- Map<String, Object> param = new HashMap<String, Object>();
- Iterator<Map.Entry<String, Object>> it = param.entrySet().iterator();
- while (it.hasNext()) {
- Map.Entry<String, Object> entry = it.next();
- String key = entry.getKey();
- String newKey = entry.getKey();
- if (pre.endsWith(".")) {
- newMap.put(pre + newKey, entry.getValue());
- } else if (StringUtils.isEmpty(pre)) {
- newMap.put(newKey, entry.getValue());
- } else {
- newMap.put(pre + "." + newKey, entry.getValue());
- }
- }
- params.put("sort", "clicknum");
- params.put("order", "desc");
- PageUtils page = huazuojingpaiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, huazuojingpai), params), params));
- return R.ok().put("data", page);
- }
-
-
-
-
-
- }
- * 上传文件
- */
- @RequestMapping("/upload")
- public R upload(@RequestParam("file") MultipartFile file, String type,HttpServletRequest request) throws Exception {
- if (file.isEmpty()) {
- throw new EIException("上传文件不能为空");
- }
- String fileExt = file.getOriginalFilename().substring(file.getOriginalFilename().lastIndexOf(".")+1);
- String fileName = new Date().getTime()+"."+fileExt;
- File dest = new File(request.getSession().getServletContext().getRealPath("/upload")+"/"+fileName);
- file.transferTo(dest);
- /**
- * 如果使用idea或者eclipse重启项目,发现之前上传的图片或者文件丢失,将下面一行代码注释打开
- * 请将以下的"D:\\ssmpiv99\\src\\main\\webapp\\upload"替换成你本地项目的upload路径,
- * 并且项目路径不能存在中文、空格等特殊字符
- */
- //FileUtils.copyFile(dest, new File("D:\\ssmpiv99\\src\\main\\webapp\\upload"+"/"+fileName)); /**修改了路径以后请将该行最前面的//注释去掉**/
- if(StringUtils.isNotBlank(type) && type.equals("1")) {
- ConfigEntity configEntity = configService.selectOne(new EntityWrapper<ConfigEntity>().eq("name", "faceFile"));
- if(configEntity==null) {
- configEntity = new ConfigEntity();
- configEntity.setName("faceFile");
- configEntity.setValue(fileName);
- } else {
- configEntity.setValue(fileName);
- }
- configService.insertOrUpdate(configEntity);
- }
- return R.ok().put("file", fileName);
- }
- /**
- * 注册
- */
- @IgnoreAuth
- @RequestMapping("/register")
- public R register(@RequestBody YonghuEntity yonghu){
- //ValidatorUtils.validateEntity(yonghu);
- YonghuEntity user = yonghuService.selectOne(new EntityWrapper<YonghuEntity>().eq("yonghuzhanghao", yonghu.getYonghuzhanghao()));
- if(user!=null) {
- return R.error("注册用户已存在");
- }
- Long uId = new Date().getTime();
- yonghu.setId(uId);
- yonghuService.insert(yonghu);
- return R.ok();
- }