pangqijun 2 жил өмнө
parent
commit
51f8ae312c
76 өөрчлөгдсөн 3328 нэмэгдсэн , 100 устгасан
  1. 129 0
      src/main/java/org/springblade/modules/custom/controller/BottleBodyController.java
  2. 129 0
      src/main/java/org/springblade/modules/custom/controller/BottleCapController.java
  3. 129 0
      src/main/java/org/springblade/modules/custom/controller/BottleLabelController.java
  4. 129 0
      src/main/java/org/springblade/modules/custom/controller/WineBoxController.java
  5. 129 0
      src/main/java/org/springblade/modules/custom/controller/WineBoxStuffingController.java
  6. 129 0
      src/main/java/org/springblade/modules/custom/controller/WineCaseController.java
  7. 129 0
      src/main/java/org/springblade/modules/custom/controller/WineCaseStuffingController.java
  8. 34 0
      src/main/java/org/springblade/modules/custom/dto/BottleBodyDTO.java
  9. 34 0
      src/main/java/org/springblade/modules/custom/dto/BottleCapDTO.java
  10. 34 0
      src/main/java/org/springblade/modules/custom/dto/BottleLabelDTO.java
  11. 34 0
      src/main/java/org/springblade/modules/custom/dto/WineBoxDTO.java
  12. 34 0
      src/main/java/org/springblade/modules/custom/dto/WineBoxStuffingDTO.java
  13. 34 0
      src/main/java/org/springblade/modules/custom/dto/WineCaseDTO.java
  14. 34 0
      src/main/java/org/springblade/modules/custom/dto/WineCaseStuffingDTO.java
  15. 62 0
      src/main/java/org/springblade/modules/custom/entity/BottleBody.java
  16. 73 0
      src/main/java/org/springblade/modules/custom/entity/BottleCap.java
  17. 57 0
      src/main/java/org/springblade/modules/custom/entity/BottleLabel.java
  18. 72 0
      src/main/java/org/springblade/modules/custom/entity/WineBox.java
  19. 57 0
      src/main/java/org/springblade/modules/custom/entity/WineBoxStuffing.java
  20. 72 0
      src/main/java/org/springblade/modules/custom/entity/WineCase.java
  21. 57 0
      src/main/java/org/springblade/modules/custom/entity/WineCaseStuffing.java
  22. 42 0
      src/main/java/org/springblade/modules/custom/mapper/BottleBodyMapper.java
  23. 27 0
      src/main/java/org/springblade/modules/custom/mapper/BottleBodyMapper.xml
  24. 42 0
      src/main/java/org/springblade/modules/custom/mapper/BottleCapMapper.java
  25. 26 0
      src/main/java/org/springblade/modules/custom/mapper/BottleCapMapper.xml
  26. 42 0
      src/main/java/org/springblade/modules/custom/mapper/BottleLabelMapper.java
  27. 26 0
      src/main/java/org/springblade/modules/custom/mapper/BottleLabelMapper.xml
  28. 42 0
      src/main/java/org/springblade/modules/custom/mapper/WineBoxMapper.java
  29. 29 0
      src/main/java/org/springblade/modules/custom/mapper/WineBoxMapper.xml
  30. 42 0
      src/main/java/org/springblade/modules/custom/mapper/WineBoxStuffingMapper.java
  31. 26 0
      src/main/java/org/springblade/modules/custom/mapper/WineBoxStuffingMapper.xml
  32. 42 0
      src/main/java/org/springblade/modules/custom/mapper/WineCaseMapper.java
  33. 29 0
      src/main/java/org/springblade/modules/custom/mapper/WineCaseMapper.xml
  34. 42 0
      src/main/java/org/springblade/modules/custom/mapper/WineCaseStuffingMapper.java
  35. 26 0
      src/main/java/org/springblade/modules/custom/mapper/WineCaseStuffingMapper.xml
  36. 41 0
      src/main/java/org/springblade/modules/custom/service/IBottleBodyService.java
  37. 41 0
      src/main/java/org/springblade/modules/custom/service/IBottleCapService.java
  38. 41 0
      src/main/java/org/springblade/modules/custom/service/IBottleLabelService.java
  39. 41 0
      src/main/java/org/springblade/modules/custom/service/IWineBoxService.java
  40. 41 0
      src/main/java/org/springblade/modules/custom/service/IWineBoxStuffingService.java
  41. 41 0
      src/main/java/org/springblade/modules/custom/service/IWineCaseService.java
  42. 41 0
      src/main/java/org/springblade/modules/custom/service/IWineCaseStuffingService.java
  43. 41 0
      src/main/java/org/springblade/modules/custom/service/impl/BottleBodyServiceImpl.java
  44. 41 0
      src/main/java/org/springblade/modules/custom/service/impl/BottleCapServiceImpl.java
  45. 41 0
      src/main/java/org/springblade/modules/custom/service/impl/BottleLabelServiceImpl.java
  46. 41 0
      src/main/java/org/springblade/modules/custom/service/impl/WineBoxServiceImpl.java
  47. 41 0
      src/main/java/org/springblade/modules/custom/service/impl/WineBoxStuffingServiceImpl.java
  48. 41 0
      src/main/java/org/springblade/modules/custom/service/impl/WineCaseServiceImpl.java
  49. 41 0
      src/main/java/org/springblade/modules/custom/service/impl/WineCaseStuffingServiceImpl.java
  50. 36 0
      src/main/java/org/springblade/modules/custom/vo/BottleBodyVO.java
  51. 36 0
      src/main/java/org/springblade/modules/custom/vo/BottleCapVO.java
  52. 36 0
      src/main/java/org/springblade/modules/custom/vo/BottleLabelVO.java
  53. 36 0
      src/main/java/org/springblade/modules/custom/vo/WineBoxStuffingVO.java
  54. 36 0
      src/main/java/org/springblade/modules/custom/vo/WineBoxVO.java
  55. 36 0
      src/main/java/org/springblade/modules/custom/vo/WineCaseStuffingVO.java
  56. 36 0
      src/main/java/org/springblade/modules/custom/vo/WineCaseVO.java
  57. 49 0
      src/main/java/org/springblade/modules/custom/wrapper/BottleBodyWrapper.java
  58. 49 0
      src/main/java/org/springblade/modules/custom/wrapper/BottleCapWrapper.java
  59. 49 0
      src/main/java/org/springblade/modules/custom/wrapper/BottleLabelWrapper.java
  60. 49 0
      src/main/java/org/springblade/modules/custom/wrapper/WineBoxStuffingWrapper.java
  61. 49 0
      src/main/java/org/springblade/modules/custom/wrapper/WineBoxWrapper.java
  62. 49 0
      src/main/java/org/springblade/modules/custom/wrapper/WineCaseStuffingWrapper.java
  63. 49 0
      src/main/java/org/springblade/modules/custom/wrapper/WineCaseWrapper.java
  64. 10 0
      src/main/java/sql/bottlebody.menu.mysql
  65. 10 0
      src/main/java/sql/bottlecap.menu.mysql
  66. 10 0
      src/main/java/sql/bottlelabel.menu.mysql
  67. 10 0
      src/main/java/sql/winebox.menu.mysql
  68. 10 0
      src/main/java/sql/wineboxstuffing.menu.mysql
  69. 10 0
      src/main/java/sql/winecase.menu.mysql
  70. 10 0
      src/main/java/sql/winecasestuffing.menu.mysql
  71. 12 97
      target/classes/META-INF/spring.factories
  72. 1 1
      target/classes/application-dev.yml
  73. 1 1
      target/classes/application.yml
  74. BIN
      target/classes/org/springblade/common/base/BaseEntity.class
  75. BIN
      target/classes/org/springblade/modules/develop/controller/CodeController.class
  76. 1 1
      target/classes/templates/controller.java.vm

+ 129 - 0
src/main/java/org/springblade/modules/custom/controller/BottleBodyController.java

@@ -0,0 +1,129 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.controller;
+
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+import io.swagger.annotations.ApiParam;
+import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
+import lombok.AllArgsConstructor;
+import javax.validation.Valid;
+
+import org.springblade.core.mp.support.Condition;
+import org.springblade.core.mp.support.Query;
+import org.springblade.core.tool.api.R;
+import org.springblade.core.tool.utils.Func;
+import org.springframework.web.bind.annotation.*;
+import org.springframework.web.bind.annotation.RequestParam;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import org.springblade.modules.custom.entity.BottleBody;
+import org.springblade.modules.custom.vo.BottleBodyVO;
+import org.springblade.modules.custom.wrapper.BottleBodyWrapper;
+import org.springblade.modules.custom.service.IBottleBodyService;
+import org.springblade.core.boot.ctrl.BladeController;
+
+/**
+ * 瓶身表 控制器
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+@RestController
+@AllArgsConstructor
+@RequestMapping("custom/bottlebody")
+@Api(value = "瓶身表", tags = "瓶身表接口")
+public class BottleBodyController extends BladeController {
+
+	private final IBottleBodyService bottleBodyService;
+
+	/**
+	 * 详情
+	 */
+	@GetMapping("/detail")
+	@ApiOperationSupport(order = 1)
+	@ApiOperation(value = "详情", notes = "传入bottleBody")
+	public R<BottleBodyVO> detail(BottleBody bottleBody) {
+		BottleBody detail = bottleBodyService.getOne(Condition.getQueryWrapper(bottleBody));
+		return R.data(BottleBodyWrapper.build().entityVO(detail));
+	}
+
+	/**
+	 * 分页 瓶身表
+	 */
+	@GetMapping("/list")
+	@ApiOperationSupport(order = 2)
+	@ApiOperation(value = "分页", notes = "传入bottleBody")
+	public R<IPage<BottleBodyVO>> list(BottleBody bottleBody, Query query) {
+		IPage<BottleBody> pages = bottleBodyService.page(Condition.getPage(query), Condition.getQueryWrapper(bottleBody));
+		return R.data(BottleBodyWrapper.build().pageVO(pages));
+	}
+
+
+	/**
+	 * 自定义分页 瓶身表
+	 */
+	@GetMapping("/page")
+	@ApiOperationSupport(order = 3)
+	@ApiOperation(value = "分页", notes = "传入bottleBody")
+	public R<IPage<BottleBodyVO>> page(BottleBodyVO bottleBody, Query query) {
+		IPage<BottleBodyVO> pages = bottleBodyService.selectBottleBodyPage(Condition.getPage(query), bottleBody);
+		return R.data(pages);
+	}
+
+	/**
+	 * 新增 瓶身表
+	 */
+	@PostMapping("/save")
+	@ApiOperationSupport(order = 4)
+	@ApiOperation(value = "新增", notes = "传入bottleBody")
+	public R save(@Valid @RequestBody BottleBody bottleBody) {
+		return R.status(bottleBodyService.save(bottleBody));
+	}
+
+	/**
+	 * 修改 瓶身表
+	 */
+	@PostMapping("/update")
+	@ApiOperationSupport(order = 5)
+	@ApiOperation(value = "修改", notes = "传入bottleBody")
+	public R update(@Valid @RequestBody BottleBody bottleBody) {
+		return R.status(bottleBodyService.updateById(bottleBody));
+	}
+
+	/**
+	 * 新增或修改 瓶身表
+	 */
+	@PostMapping("/submit")
+	@ApiOperationSupport(order = 6)
+	@ApiOperation(value = "新增或修改", notes = "传入bottleBody")
+	public R submit(@Valid @RequestBody BottleBody bottleBody) {
+		return R.status(bottleBodyService.saveOrUpdate(bottleBody));
+	}
+
+	
+	/**
+	 * 删除 瓶身表
+	 */
+	@PostMapping("/remove")
+	@ApiOperationSupport(order = 7)
+	@ApiOperation(value = "逻辑删除", notes = "传入ids")
+	public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) {
+		return R.status(bottleBodyService.removeByIds(Func.toLongList(ids)));
+	}
+
+	
+}

+ 129 - 0
src/main/java/org/springblade/modules/custom/controller/BottleCapController.java

@@ -0,0 +1,129 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.controller;
+
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+import io.swagger.annotations.ApiParam;
+import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
+import lombok.AllArgsConstructor;
+import javax.validation.Valid;
+
+import org.springblade.core.mp.support.Condition;
+import org.springblade.core.mp.support.Query;
+import org.springblade.core.tool.api.R;
+import org.springblade.core.tool.utils.Func;
+import org.springframework.web.bind.annotation.*;
+import org.springframework.web.bind.annotation.RequestParam;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import org.springblade.modules.custom.entity.BottleCap;
+import org.springblade.modules.custom.vo.BottleCapVO;
+import org.springblade.modules.custom.wrapper.BottleCapWrapper;
+import org.springblade.modules.custom.service.IBottleCapService;
+import org.springblade.core.boot.ctrl.BladeController;
+
+/**
+ * 瓶盖表 控制器
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+@RestController
+@AllArgsConstructor
+@RequestMapping("custom/bottlecap")
+@Api(value = "瓶盖表", tags = "瓶盖表接口")
+public class BottleCapController extends BladeController {
+
+	private final IBottleCapService bottleCapService;
+
+	/**
+	 * 详情
+	 */
+	@GetMapping("/detail")
+	@ApiOperationSupport(order = 1)
+	@ApiOperation(value = "详情", notes = "传入bottleCap")
+	public R<BottleCapVO> detail(BottleCap bottleCap) {
+		BottleCap detail = bottleCapService.getOne(Condition.getQueryWrapper(bottleCap));
+		return R.data(BottleCapWrapper.build().entityVO(detail));
+	}
+
+	/**
+	 * 分页 瓶盖表
+	 */
+	@GetMapping("/list")
+	@ApiOperationSupport(order = 2)
+	@ApiOperation(value = "分页", notes = "传入bottleCap")
+	public R<IPage<BottleCapVO>> list(BottleCap bottleCap, Query query) {
+		IPage<BottleCap> pages = bottleCapService.page(Condition.getPage(query), Condition.getQueryWrapper(bottleCap));
+		return R.data(BottleCapWrapper.build().pageVO(pages));
+	}
+
+
+	/**
+	 * 自定义分页 瓶盖表
+	 */
+	@GetMapping("/page")
+	@ApiOperationSupport(order = 3)
+	@ApiOperation(value = "分页", notes = "传入bottleCap")
+	public R<IPage<BottleCapVO>> page(BottleCapVO bottleCap, Query query) {
+		IPage<BottleCapVO> pages = bottleCapService.selectBottleCapPage(Condition.getPage(query), bottleCap);
+		return R.data(pages);
+	}
+
+	/**
+	 * 新增 瓶盖表
+	 */
+	@PostMapping("/save")
+	@ApiOperationSupport(order = 4)
+	@ApiOperation(value = "新增", notes = "传入bottleCap")
+	public R save(@Valid @RequestBody BottleCap bottleCap) {
+		return R.status(bottleCapService.save(bottleCap));
+	}
+
+	/**
+	 * 修改 瓶盖表
+	 */
+	@PostMapping("/update")
+	@ApiOperationSupport(order = 5)
+	@ApiOperation(value = "修改", notes = "传入bottleCap")
+	public R update(@Valid @RequestBody BottleCap bottleCap) {
+		return R.status(bottleCapService.updateById(bottleCap));
+	}
+
+	/**
+	 * 新增或修改 瓶盖表
+	 */
+	@PostMapping("/submit")
+	@ApiOperationSupport(order = 6)
+	@ApiOperation(value = "新增或修改", notes = "传入bottleCap")
+	public R submit(@Valid @RequestBody BottleCap bottleCap) {
+		return R.status(bottleCapService.saveOrUpdate(bottleCap));
+	}
+
+	
+	/**
+	 * 删除 瓶盖表
+	 */
+	@PostMapping("/remove")
+	@ApiOperationSupport(order = 7)
+	@ApiOperation(value = "逻辑删除", notes = "传入ids")
+	public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) {
+		return R.status(bottleCapService.removeByIds(Func.toLongList(ids)));
+	}
+
+	
+}

+ 129 - 0
src/main/java/org/springblade/modules/custom/controller/BottleLabelController.java

@@ -0,0 +1,129 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.controller;
+
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+import io.swagger.annotations.ApiParam;
+import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
+import lombok.AllArgsConstructor;
+import javax.validation.Valid;
+
+import org.springblade.core.mp.support.Condition;
+import org.springblade.core.mp.support.Query;
+import org.springblade.core.tool.api.R;
+import org.springblade.core.tool.utils.Func;
+import org.springframework.web.bind.annotation.*;
+import org.springframework.web.bind.annotation.RequestParam;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import org.springblade.modules.custom.entity.BottleLabel;
+import org.springblade.modules.custom.vo.BottleLabelVO;
+import org.springblade.modules.custom.wrapper.BottleLabelWrapper;
+import org.springblade.modules.custom.service.IBottleLabelService;
+import org.springblade.core.boot.ctrl.BladeController;
+
+/**
+ * 标贴表 控制器
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+@RestController
+@AllArgsConstructor
+@RequestMapping("custom/bottlelabel")
+@Api(value = "标贴表", tags = "标贴表接口")
+public class BottleLabelController extends BladeController {
+
+	private final IBottleLabelService bottleLabelService;
+
+	/**
+	 * 详情
+	 */
+	@GetMapping("/detail")
+	@ApiOperationSupport(order = 1)
+	@ApiOperation(value = "详情", notes = "传入bottleLabel")
+	public R<BottleLabelVO> detail(BottleLabel bottleLabel) {
+		BottleLabel detail = bottleLabelService.getOne(Condition.getQueryWrapper(bottleLabel));
+		return R.data(BottleLabelWrapper.build().entityVO(detail));
+	}
+
+	/**
+	 * 分页 标贴表
+	 */
+	@GetMapping("/list")
+	@ApiOperationSupport(order = 2)
+	@ApiOperation(value = "分页", notes = "传入bottleLabel")
+	public R<IPage<BottleLabelVO>> list(BottleLabel bottleLabel, Query query) {
+		IPage<BottleLabel> pages = bottleLabelService.page(Condition.getPage(query), Condition.getQueryWrapper(bottleLabel));
+		return R.data(BottleLabelWrapper.build().pageVO(pages));
+	}
+
+
+	/**
+	 * 自定义分页 标贴表
+	 */
+	@GetMapping("/page")
+	@ApiOperationSupport(order = 3)
+	@ApiOperation(value = "分页", notes = "传入bottleLabel")
+	public R<IPage<BottleLabelVO>> page(BottleLabelVO bottleLabel, Query query) {
+		IPage<BottleLabelVO> pages = bottleLabelService.selectBottleLabelPage(Condition.getPage(query), bottleLabel);
+		return R.data(pages);
+	}
+
+	/**
+	 * 新增 标贴表
+	 */
+	@PostMapping("/save")
+	@ApiOperationSupport(order = 4)
+	@ApiOperation(value = "新增", notes = "传入bottleLabel")
+	public R save(@Valid @RequestBody BottleLabel bottleLabel) {
+		return R.status(bottleLabelService.save(bottleLabel));
+	}
+
+	/**
+	 * 修改 标贴表
+	 */
+	@PostMapping("/update")
+	@ApiOperationSupport(order = 5)
+	@ApiOperation(value = "修改", notes = "传入bottleLabel")
+	public R update(@Valid @RequestBody BottleLabel bottleLabel) {
+		return R.status(bottleLabelService.updateById(bottleLabel));
+	}
+
+	/**
+	 * 新增或修改 标贴表
+	 */
+	@PostMapping("/submit")
+	@ApiOperationSupport(order = 6)
+	@ApiOperation(value = "新增或修改", notes = "传入bottleLabel")
+	public R submit(@Valid @RequestBody BottleLabel bottleLabel) {
+		return R.status(bottleLabelService.saveOrUpdate(bottleLabel));
+	}
+
+	
+	/**
+	 * 删除 标贴表
+	 */
+	@PostMapping("/remove")
+	@ApiOperationSupport(order = 7)
+	@ApiOperation(value = "逻辑删除", notes = "传入ids")
+	public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) {
+		return R.status(bottleLabelService.removeByIds(Func.toLongList(ids)));
+	}
+
+	
+}

+ 129 - 0
src/main/java/org/springblade/modules/custom/controller/WineBoxController.java

@@ -0,0 +1,129 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.controller;
+
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+import io.swagger.annotations.ApiParam;
+import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
+import lombok.AllArgsConstructor;
+import javax.validation.Valid;
+
+import org.springblade.core.mp.support.Condition;
+import org.springblade.core.mp.support.Query;
+import org.springblade.core.tool.api.R;
+import org.springblade.core.tool.utils.Func;
+import org.springframework.web.bind.annotation.*;
+import org.springframework.web.bind.annotation.RequestParam;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import org.springblade.modules.custom.entity.WineBox;
+import org.springblade.modules.custom.vo.WineBoxVO;
+import org.springblade.modules.custom.wrapper.WineBoxWrapper;
+import org.springblade.modules.custom.service.IWineBoxService;
+import org.springblade.core.boot.ctrl.BladeController;
+
+/**
+ * 酒盒表 控制器
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+@RestController
+@AllArgsConstructor
+@RequestMapping("custom/winebox")
+@Api(value = "酒盒表", tags = "酒盒表接口")
+public class WineBoxController extends BladeController {
+
+	private final IWineBoxService wineBoxService;
+
+	/**
+	 * 详情
+	 */
+	@GetMapping("/detail")
+	@ApiOperationSupport(order = 1)
+	@ApiOperation(value = "详情", notes = "传入wineBox")
+	public R<WineBoxVO> detail(WineBox wineBox) {
+		WineBox detail = wineBoxService.getOne(Condition.getQueryWrapper(wineBox));
+		return R.data(WineBoxWrapper.build().entityVO(detail));
+	}
+
+	/**
+	 * 分页 酒盒表
+	 */
+	@GetMapping("/list")
+	@ApiOperationSupport(order = 2)
+	@ApiOperation(value = "分页", notes = "传入wineBox")
+	public R<IPage<WineBoxVO>> list(WineBox wineBox, Query query) {
+		IPage<WineBox> pages = wineBoxService.page(Condition.getPage(query), Condition.getQueryWrapper(wineBox));
+		return R.data(WineBoxWrapper.build().pageVO(pages));
+	}
+
+
+	/**
+	 * 自定义分页 酒盒表
+	 */
+	@GetMapping("/page")
+	@ApiOperationSupport(order = 3)
+	@ApiOperation(value = "分页", notes = "传入wineBox")
+	public R<IPage<WineBoxVO>> page(WineBoxVO wineBox, Query query) {
+		IPage<WineBoxVO> pages = wineBoxService.selectWineBoxPage(Condition.getPage(query), wineBox);
+		return R.data(pages);
+	}
+
+	/**
+	 * 新增 酒盒表
+	 */
+	@PostMapping("/save")
+	@ApiOperationSupport(order = 4)
+	@ApiOperation(value = "新增", notes = "传入wineBox")
+	public R save(@Valid @RequestBody WineBox wineBox) {
+		return R.status(wineBoxService.save(wineBox));
+	}
+
+	/**
+	 * 修改 酒盒表
+	 */
+	@PostMapping("/update")
+	@ApiOperationSupport(order = 5)
+	@ApiOperation(value = "修改", notes = "传入wineBox")
+	public R update(@Valid @RequestBody WineBox wineBox) {
+		return R.status(wineBoxService.updateById(wineBox));
+	}
+
+	/**
+	 * 新增或修改 酒盒表
+	 */
+	@PostMapping("/submit")
+	@ApiOperationSupport(order = 6)
+	@ApiOperation(value = "新增或修改", notes = "传入wineBox")
+	public R submit(@Valid @RequestBody WineBox wineBox) {
+		return R.status(wineBoxService.saveOrUpdate(wineBox));
+	}
+
+	
+	/**
+	 * 删除 酒盒表
+	 */
+	@PostMapping("/remove")
+	@ApiOperationSupport(order = 7)
+	@ApiOperation(value = "逻辑删除", notes = "传入ids")
+	public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) {
+		return R.status(wineBoxService.removeByIds(Func.toLongList(ids)));
+	}
+
+	
+}

+ 129 - 0
src/main/java/org/springblade/modules/custom/controller/WineBoxStuffingController.java

@@ -0,0 +1,129 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.controller;
+
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+import io.swagger.annotations.ApiParam;
+import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
+import lombok.AllArgsConstructor;
+import javax.validation.Valid;
+
+import org.springblade.core.mp.support.Condition;
+import org.springblade.core.mp.support.Query;
+import org.springblade.core.tool.api.R;
+import org.springblade.core.tool.utils.Func;
+import org.springframework.web.bind.annotation.*;
+import org.springframework.web.bind.annotation.RequestParam;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import org.springblade.modules.custom.entity.WineBoxStuffing;
+import org.springblade.modules.custom.vo.WineBoxStuffingVO;
+import org.springblade.modules.custom.wrapper.WineBoxStuffingWrapper;
+import org.springblade.modules.custom.service.IWineBoxStuffingService;
+import org.springblade.core.boot.ctrl.BladeController;
+
+/**
+ * 酒盒填充物表 控制器
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+@RestController
+@AllArgsConstructor
+@RequestMapping("custom/wineboxstuffing")
+@Api(value = "酒盒填充物表", tags = "酒盒填充物表接口")
+public class WineBoxStuffingController extends BladeController {
+
+	private final IWineBoxStuffingService wineBoxStuffingService;
+
+	/**
+	 * 详情
+	 */
+	@GetMapping("/detail")
+	@ApiOperationSupport(order = 1)
+	@ApiOperation(value = "详情", notes = "传入wineBoxStuffing")
+	public R<WineBoxStuffingVO> detail(WineBoxStuffing wineBoxStuffing) {
+		WineBoxStuffing detail = wineBoxStuffingService.getOne(Condition.getQueryWrapper(wineBoxStuffing));
+		return R.data(WineBoxStuffingWrapper.build().entityVO(detail));
+	}
+
+	/**
+	 * 分页 酒盒填充物表
+	 */
+	@GetMapping("/list")
+	@ApiOperationSupport(order = 2)
+	@ApiOperation(value = "分页", notes = "传入wineBoxStuffing")
+	public R<IPage<WineBoxStuffingVO>> list(WineBoxStuffing wineBoxStuffing, Query query) {
+		IPage<WineBoxStuffing> pages = wineBoxStuffingService.page(Condition.getPage(query), Condition.getQueryWrapper(wineBoxStuffing));
+		return R.data(WineBoxStuffingWrapper.build().pageVO(pages));
+	}
+
+
+	/**
+	 * 自定义分页 酒盒填充物表
+	 */
+	@GetMapping("/page")
+	@ApiOperationSupport(order = 3)
+	@ApiOperation(value = "分页", notes = "传入wineBoxStuffing")
+	public R<IPage<WineBoxStuffingVO>> page(WineBoxStuffingVO wineBoxStuffing, Query query) {
+		IPage<WineBoxStuffingVO> pages = wineBoxStuffingService.selectWineBoxStuffingPage(Condition.getPage(query), wineBoxStuffing);
+		return R.data(pages);
+	}
+
+	/**
+	 * 新增 酒盒填充物表
+	 */
+	@PostMapping("/save")
+	@ApiOperationSupport(order = 4)
+	@ApiOperation(value = "新增", notes = "传入wineBoxStuffing")
+	public R save(@Valid @RequestBody WineBoxStuffing wineBoxStuffing) {
+		return R.status(wineBoxStuffingService.save(wineBoxStuffing));
+	}
+
+	/**
+	 * 修改 酒盒填充物表
+	 */
+	@PostMapping("/update")
+	@ApiOperationSupport(order = 5)
+	@ApiOperation(value = "修改", notes = "传入wineBoxStuffing")
+	public R update(@Valid @RequestBody WineBoxStuffing wineBoxStuffing) {
+		return R.status(wineBoxStuffingService.updateById(wineBoxStuffing));
+	}
+
+	/**
+	 * 新增或修改 酒盒填充物表
+	 */
+	@PostMapping("/submit")
+	@ApiOperationSupport(order = 6)
+	@ApiOperation(value = "新增或修改", notes = "传入wineBoxStuffing")
+	public R submit(@Valid @RequestBody WineBoxStuffing wineBoxStuffing) {
+		return R.status(wineBoxStuffingService.saveOrUpdate(wineBoxStuffing));
+	}
+
+	
+	/**
+	 * 删除 酒盒填充物表
+	 */
+	@PostMapping("/remove")
+	@ApiOperationSupport(order = 7)
+	@ApiOperation(value = "逻辑删除", notes = "传入ids")
+	public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) {
+		return R.status(wineBoxStuffingService.removeByIds(Func.toLongList(ids)));
+	}
+
+	
+}

+ 129 - 0
src/main/java/org/springblade/modules/custom/controller/WineCaseController.java

@@ -0,0 +1,129 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.controller;
+
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+import io.swagger.annotations.ApiParam;
+import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
+import lombok.AllArgsConstructor;
+import javax.validation.Valid;
+
+import org.springblade.core.mp.support.Condition;
+import org.springblade.core.mp.support.Query;
+import org.springblade.core.tool.api.R;
+import org.springblade.core.tool.utils.Func;
+import org.springframework.web.bind.annotation.*;
+import org.springframework.web.bind.annotation.RequestParam;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import org.springblade.modules.custom.entity.WineCase;
+import org.springblade.modules.custom.vo.WineCaseVO;
+import org.springblade.modules.custom.wrapper.WineCaseWrapper;
+import org.springblade.modules.custom.service.IWineCaseService;
+import org.springblade.core.boot.ctrl.BladeController;
+
+/**
+ * 酒箱表 控制器
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+@RestController
+@AllArgsConstructor
+@RequestMapping("custom/winecase")
+@Api(value = "酒箱表", tags = "酒箱表接口")
+public class WineCaseController extends BladeController {
+
+	private final IWineCaseService wineCaseService;
+
+	/**
+	 * 详情
+	 */
+	@GetMapping("/detail")
+	@ApiOperationSupport(order = 1)
+	@ApiOperation(value = "详情", notes = "传入wineCase")
+	public R<WineCaseVO> detail(WineCase wineCase) {
+		WineCase detail = wineCaseService.getOne(Condition.getQueryWrapper(wineCase));
+		return R.data(WineCaseWrapper.build().entityVO(detail));
+	}
+
+	/**
+	 * 分页 酒箱表
+	 */
+	@GetMapping("/list")
+	@ApiOperationSupport(order = 2)
+	@ApiOperation(value = "分页", notes = "传入wineCase")
+	public R<IPage<WineCaseVO>> list(WineCase wineCase, Query query) {
+		IPage<WineCase> pages = wineCaseService.page(Condition.getPage(query), Condition.getQueryWrapper(wineCase));
+		return R.data(WineCaseWrapper.build().pageVO(pages));
+	}
+
+
+	/**
+	 * 自定义分页 酒箱表
+	 */
+	@GetMapping("/page")
+	@ApiOperationSupport(order = 3)
+	@ApiOperation(value = "分页", notes = "传入wineCase")
+	public R<IPage<WineCaseVO>> page(WineCaseVO wineCase, Query query) {
+		IPage<WineCaseVO> pages = wineCaseService.selectWineCasePage(Condition.getPage(query), wineCase);
+		return R.data(pages);
+	}
+
+	/**
+	 * 新增 酒箱表
+	 */
+	@PostMapping("/save")
+	@ApiOperationSupport(order = 4)
+	@ApiOperation(value = "新增", notes = "传入wineCase")
+	public R save(@Valid @RequestBody WineCase wineCase) {
+		return R.status(wineCaseService.save(wineCase));
+	}
+
+	/**
+	 * 修改 酒箱表
+	 */
+	@PostMapping("/update")
+	@ApiOperationSupport(order = 5)
+	@ApiOperation(value = "修改", notes = "传入wineCase")
+	public R update(@Valid @RequestBody WineCase wineCase) {
+		return R.status(wineCaseService.updateById(wineCase));
+	}
+
+	/**
+	 * 新增或修改 酒箱表
+	 */
+	@PostMapping("/submit")
+	@ApiOperationSupport(order = 6)
+	@ApiOperation(value = "新增或修改", notes = "传入wineCase")
+	public R submit(@Valid @RequestBody WineCase wineCase) {
+		return R.status(wineCaseService.saveOrUpdate(wineCase));
+	}
+
+	
+	/**
+	 * 删除 酒箱表
+	 */
+	@PostMapping("/remove")
+	@ApiOperationSupport(order = 7)
+	@ApiOperation(value = "逻辑删除", notes = "传入ids")
+	public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) {
+		return R.status(wineCaseService.removeByIds(Func.toLongList(ids)));
+	}
+
+	
+}

+ 129 - 0
src/main/java/org/springblade/modules/custom/controller/WineCaseStuffingController.java

@@ -0,0 +1,129 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.controller;
+
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+import io.swagger.annotations.ApiParam;
+import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
+import lombok.AllArgsConstructor;
+import javax.validation.Valid;
+
+import org.springblade.core.mp.support.Condition;
+import org.springblade.core.mp.support.Query;
+import org.springblade.core.tool.api.R;
+import org.springblade.core.tool.utils.Func;
+import org.springframework.web.bind.annotation.*;
+import org.springframework.web.bind.annotation.RequestParam;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import org.springblade.modules.custom.entity.WineCaseStuffing;
+import org.springblade.modules.custom.vo.WineCaseStuffingVO;
+import org.springblade.modules.custom.wrapper.WineCaseStuffingWrapper;
+import org.springblade.modules.custom.service.IWineCaseStuffingService;
+import org.springblade.core.boot.ctrl.BladeController;
+
+/**
+ * 酒箱填充物表 控制器
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+@RestController
+@AllArgsConstructor
+@RequestMapping("custom/winecasestuffing")
+@Api(value = "酒箱填充物表", tags = "酒箱填充物表接口")
+public class WineCaseStuffingController extends BladeController {
+
+	private final IWineCaseStuffingService wineCaseStuffingService;
+
+	/**
+	 * 详情
+	 */
+	@GetMapping("/detail")
+	@ApiOperationSupport(order = 1)
+	@ApiOperation(value = "详情", notes = "传入wineCaseStuffing")
+	public R<WineCaseStuffingVO> detail(WineCaseStuffing wineCaseStuffing) {
+		WineCaseStuffing detail = wineCaseStuffingService.getOne(Condition.getQueryWrapper(wineCaseStuffing));
+		return R.data(WineCaseStuffingWrapper.build().entityVO(detail));
+	}
+
+	/**
+	 * 分页 酒箱填充物表
+	 */
+	@GetMapping("/list")
+	@ApiOperationSupport(order = 2)
+	@ApiOperation(value = "分页", notes = "传入wineCaseStuffing")
+	public R<IPage<WineCaseStuffingVO>> list(WineCaseStuffing wineCaseStuffing, Query query) {
+		IPage<WineCaseStuffing> pages = wineCaseStuffingService.page(Condition.getPage(query), Condition.getQueryWrapper(wineCaseStuffing));
+		return R.data(WineCaseStuffingWrapper.build().pageVO(pages));
+	}
+
+
+	/**
+	 * 自定义分页 酒箱填充物表
+	 */
+	@GetMapping("/page")
+	@ApiOperationSupport(order = 3)
+	@ApiOperation(value = "分页", notes = "传入wineCaseStuffing")
+	public R<IPage<WineCaseStuffingVO>> page(WineCaseStuffingVO wineCaseStuffing, Query query) {
+		IPage<WineCaseStuffingVO> pages = wineCaseStuffingService.selectWineCaseStuffingPage(Condition.getPage(query), wineCaseStuffing);
+		return R.data(pages);
+	}
+
+	/**
+	 * 新增 酒箱填充物表
+	 */
+	@PostMapping("/save")
+	@ApiOperationSupport(order = 4)
+	@ApiOperation(value = "新增", notes = "传入wineCaseStuffing")
+	public R save(@Valid @RequestBody WineCaseStuffing wineCaseStuffing) {
+		return R.status(wineCaseStuffingService.save(wineCaseStuffing));
+	}
+
+	/**
+	 * 修改 酒箱填充物表
+	 */
+	@PostMapping("/update")
+	@ApiOperationSupport(order = 5)
+	@ApiOperation(value = "修改", notes = "传入wineCaseStuffing")
+	public R update(@Valid @RequestBody WineCaseStuffing wineCaseStuffing) {
+		return R.status(wineCaseStuffingService.updateById(wineCaseStuffing));
+	}
+
+	/**
+	 * 新增或修改 酒箱填充物表
+	 */
+	@PostMapping("/submit")
+	@ApiOperationSupport(order = 6)
+	@ApiOperation(value = "新增或修改", notes = "传入wineCaseStuffing")
+	public R submit(@Valid @RequestBody WineCaseStuffing wineCaseStuffing) {
+		return R.status(wineCaseStuffingService.saveOrUpdate(wineCaseStuffing));
+	}
+
+	
+	/**
+	 * 删除 酒箱填充物表
+	 */
+	@PostMapping("/remove")
+	@ApiOperationSupport(order = 7)
+	@ApiOperation(value = "逻辑删除", notes = "传入ids")
+	public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) {
+		return R.status(wineCaseStuffingService.removeByIds(Func.toLongList(ids)));
+	}
+
+	
+}

+ 34 - 0
src/main/java/org/springblade/modules/custom/dto/BottleBodyDTO.java

@@ -0,0 +1,34 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.dto;
+
+import org.springblade.modules.custom.entity.BottleBody;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+/**
+ * 瓶身表数据传输对象实体类
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+@Data
+@EqualsAndHashCode(callSuper = true)
+public class BottleBodyDTO extends BottleBody {
+	private static final long serialVersionUID = 1L;
+
+}

+ 34 - 0
src/main/java/org/springblade/modules/custom/dto/BottleCapDTO.java

@@ -0,0 +1,34 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.dto;
+
+import org.springblade.modules.custom.entity.BottleCap;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+/**
+ * 瓶盖表数据传输对象实体类
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+@Data
+@EqualsAndHashCode(callSuper = true)
+public class BottleCapDTO extends BottleCap {
+	private static final long serialVersionUID = 1L;
+
+}

+ 34 - 0
src/main/java/org/springblade/modules/custom/dto/BottleLabelDTO.java

@@ -0,0 +1,34 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.dto;
+
+import org.springblade.modules.custom.entity.BottleLabel;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+/**
+ * 标贴表数据传输对象实体类
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+@Data
+@EqualsAndHashCode(callSuper = true)
+public class BottleLabelDTO extends BottleLabel {
+	private static final long serialVersionUID = 1L;
+
+}

+ 34 - 0
src/main/java/org/springblade/modules/custom/dto/WineBoxDTO.java

@@ -0,0 +1,34 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.dto;
+
+import org.springblade.modules.custom.entity.WineBox;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+/**
+ * 酒盒表数据传输对象实体类
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+@Data
+@EqualsAndHashCode(callSuper = true)
+public class WineBoxDTO extends WineBox {
+	private static final long serialVersionUID = 1L;
+
+}

+ 34 - 0
src/main/java/org/springblade/modules/custom/dto/WineBoxStuffingDTO.java

@@ -0,0 +1,34 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.dto;
+
+import org.springblade.modules.custom.entity.WineBoxStuffing;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+/**
+ * 酒盒填充物表数据传输对象实体类
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+@Data
+@EqualsAndHashCode(callSuper = true)
+public class WineBoxStuffingDTO extends WineBoxStuffing {
+	private static final long serialVersionUID = 1L;
+
+}

+ 34 - 0
src/main/java/org/springblade/modules/custom/dto/WineCaseDTO.java

@@ -0,0 +1,34 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.dto;
+
+import org.springblade.modules.custom.entity.WineCase;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+/**
+ * 酒箱表数据传输对象实体类
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+@Data
+@EqualsAndHashCode(callSuper = true)
+public class WineCaseDTO extends WineCase {
+	private static final long serialVersionUID = 1L;
+
+}

+ 34 - 0
src/main/java/org/springblade/modules/custom/dto/WineCaseStuffingDTO.java

@@ -0,0 +1,34 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.dto;
+
+import org.springblade.modules.custom.entity.WineCaseStuffing;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+/**
+ * 酒箱填充物表数据传输对象实体类
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+@Data
+@EqualsAndHashCode(callSuper = true)
+public class WineCaseStuffingDTO extends WineCaseStuffing {
+	private static final long serialVersionUID = 1L;
+
+}

+ 62 - 0
src/main/java/org/springblade/modules/custom/entity/BottleBody.java

@@ -0,0 +1,62 @@
+package org.springblade.modules.custom.entity;
+
+import java.math.BigDecimal;
+import org.springblade.common.base.BaseEntity;
+import com.baomidou.mybatisplus.annotation.TableName;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+
+/**
+ * 瓶身表实体类
+ *
+ * @author zzyd
+ * @since 2023-02-07
+ */
+@Data
+@TableName("biz_bottle_body")
+@EqualsAndHashCode(callSuper = true)
+@ApiModel(value = "BottleBody对象", description = "瓶身表")
+public class BottleBody extends BaseEntity {
+
+	private static final long serialVersionUID = 1L;
+
+	/**
+	* 名称
+	*/
+	@ApiModelProperty(value = "名称")
+	private String name;
+	/**
+	* 图片
+	*/
+	@ApiModelProperty(value = "图片")
+	private String image;
+	/**
+	* 容量
+	*/
+	@ApiModelProperty(value = "容量")
+	private Integer capacity;
+	/**
+	* 价格
+	*/
+	@ApiModelProperty(value = "价格")
+	private BigDecimal price;
+	/**
+	* 单位
+	*/
+	@ApiModelProperty(value = "单位")
+	private String unit;
+	/**
+	* 排序
+	*/
+	@ApiModelProperty(value = "排序")
+	private Integer sort;
+	/**
+	* 状态;0-禁用 1-启用
+	*/
+	@ApiModelProperty(value = "状态;0-禁用 1-启用")
+	private Integer status;
+
+
+}

+ 73 - 0
src/main/java/org/springblade/modules/custom/entity/BottleCap.java

@@ -0,0 +1,73 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.entity;
+
+import java.math.BigDecimal;
+import org.springblade.common.base.BaseEntity;
+import com.baomidou.mybatisplus.annotation.TableName;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+
+/**
+ * 瓶盖表实体类
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+@Data
+@TableName("biz_bottle_cap")
+@EqualsAndHashCode(callSuper = true)
+@ApiModel(value = "BottleCap对象", description = "瓶盖表")
+public class BottleCap extends BaseEntity {
+
+	private static final long serialVersionUID = 1L;
+
+	/**
+	* 名称
+	*/
+	@ApiModelProperty(value = "名称")
+	private String name;
+	/**
+	* 图片
+	*/
+	@ApiModelProperty(value = "图片")
+	private String image;
+	/**
+	* 价格
+	*/
+	@ApiModelProperty(value = "价格")
+	private BigDecimal price;
+	/**
+	* 单位
+	*/
+	@ApiModelProperty(value = "单位")
+	private String unit;
+	/**
+	* 排序
+	*/
+	@ApiModelProperty(value = "排序")
+	private Integer sort;
+	/**
+	* 状态 0-禁用 1-启用
+	*/
+	@ApiModelProperty(value = "状态 0-禁用 1-启用")
+	private Integer status;
+
+
+}

+ 57 - 0
src/main/java/org/springblade/modules/custom/entity/BottleLabel.java

@@ -0,0 +1,57 @@
+package org.springblade.modules.custom.entity;
+
+import java.math.BigDecimal;
+import org.springblade.common.base.BaseEntity;
+import com.baomidou.mybatisplus.annotation.TableName;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+
+/**
+ * 标贴表实体类
+ *
+ * @author zzyd
+ * @since 2023-02-07
+ */
+@Data
+@TableName("biz_bottle_label")
+@EqualsAndHashCode(callSuper = true)
+@ApiModel(value = "BottleLabel对象", description = "标贴表")
+public class BottleLabel extends BaseEntity {
+
+	private static final long serialVersionUID = 1L;
+
+	/**
+	* 名称
+	*/
+	@ApiModelProperty(value = "名称")
+	private String name;
+	/**
+	* 图片
+	*/
+	@ApiModelProperty(value = "图片")
+	private String image;
+	/**
+	* 价格
+	*/
+	@ApiModelProperty(value = "价格")
+	private BigDecimal price;
+	/**
+	* 单位
+	*/
+	@ApiModelProperty(value = "单位")
+	private String unit;
+	/**
+	* 排序
+	*/
+	@ApiModelProperty(value = "排序")
+	private Integer sort;
+	/**
+	* 状态 0-禁用 1-启用
+	*/
+	@ApiModelProperty(value = "状态 0-禁用 1-启用")
+	private Integer status;
+
+
+}

+ 72 - 0
src/main/java/org/springblade/modules/custom/entity/WineBox.java

@@ -0,0 +1,72 @@
+package org.springblade.modules.custom.entity;
+
+import java.math.BigDecimal;
+import org.springblade.common.base.BaseEntity;
+import com.baomidou.mybatisplus.annotation.TableName;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+
+/**
+ * 酒盒表实体类
+ *
+ * @author zzyd
+ * @since 2023-02-07
+ */
+@Data
+@TableName("biz_wine_box")
+@EqualsAndHashCode(callSuper = true)
+@ApiModel(value = "WineBox对象", description = "酒盒表")
+public class WineBox extends BaseEntity {
+
+	private static final long serialVersionUID = 1L;
+
+	/**
+	* 名称
+	*/
+	@ApiModelProperty(value = "名称")
+	private String name;
+	/**
+	* 图片
+	*/
+	@ApiModelProperty(value = "图片")
+	private String image;
+	/**
+	* 长
+	*/
+	@ApiModelProperty(value = "长")
+	private BigDecimal length;
+	/**
+	* 宽
+	*/
+	@ApiModelProperty(value = "宽")
+	private BigDecimal width;
+	/**
+	* 高
+	*/
+	@ApiModelProperty(value = "高")
+	private BigDecimal high;
+	/**
+	* 价格
+	*/
+	@ApiModelProperty(value = "价格")
+	private BigDecimal price;
+	/**
+	* 单位
+	*/
+	@ApiModelProperty(value = "单位")
+	private String unit;
+	/**
+	* 排序
+	*/
+	@ApiModelProperty(value = "排序")
+	private Integer sort;
+	/**
+	* 状态 0-禁用 1-启用
+	*/
+	@ApiModelProperty(value = "状态 0-禁用 1-启用")
+	private Integer status;
+
+
+}

+ 57 - 0
src/main/java/org/springblade/modules/custom/entity/WineBoxStuffing.java

@@ -0,0 +1,57 @@
+package org.springblade.modules.custom.entity;
+
+import java.math.BigDecimal;
+import org.springblade.common.base.BaseEntity;
+import com.baomidou.mybatisplus.annotation.TableName;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+
+/**
+ * 酒盒填充物表实体类
+ *
+ * @author zzyd
+ * @since 2023-02-07
+ */
+@Data
+@TableName("biz_wine_box_stuffing")
+@EqualsAndHashCode(callSuper = true)
+@ApiModel(value = "WineBoxStuffing对象", description = "酒盒填充物表")
+public class WineBoxStuffing extends BaseEntity {
+
+	private static final long serialVersionUID = 1L;
+
+	/**
+	* 名称
+	*/
+	@ApiModelProperty(value = "名称")
+	private String name;
+	/**
+	* 图片
+	*/
+	@ApiModelProperty(value = "图片")
+	private String image;
+	/**
+	* 价格
+	*/
+	@ApiModelProperty(value = "价格")
+	private BigDecimal price;
+	/**
+	* 单位
+	*/
+	@ApiModelProperty(value = "单位")
+	private String unit;
+	/**
+	* 排序
+	*/
+	@ApiModelProperty(value = "排序")
+	private Integer sort;
+	/**
+	* 状态 0-禁用 1-启用
+	*/
+	@ApiModelProperty(value = "状态 0-禁用 1-启用")
+	private Integer status;
+
+
+}

+ 72 - 0
src/main/java/org/springblade/modules/custom/entity/WineCase.java

@@ -0,0 +1,72 @@
+package org.springblade.modules.custom.entity;
+
+import java.math.BigDecimal;
+import org.springblade.common.base.BaseEntity;
+import com.baomidou.mybatisplus.annotation.TableName;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+
+/**
+ * 酒箱表实体类
+ *
+ * @author zzyd
+ * @since 2023-02-07
+ */
+@Data
+@TableName("biz_wine_case")
+@EqualsAndHashCode(callSuper = true)
+@ApiModel(value = "WineCase对象", description = "酒箱表")
+public class WineCase extends BaseEntity {
+
+	private static final long serialVersionUID = 1L;
+
+	/**
+	* 名称
+	*/
+	@ApiModelProperty(value = "名称")
+	private String name;
+	/**
+	* 图片
+	*/
+	@ApiModelProperty(value = "图片")
+	private String image;
+	/**
+	* 长
+	*/
+	@ApiModelProperty(value = "长")
+	private BigDecimal length;
+	/**
+	* 宽
+	*/
+	@ApiModelProperty(value = "宽")
+	private BigDecimal width;
+	/**
+	* 高
+	*/
+	@ApiModelProperty(value = "高")
+	private BigDecimal high;
+	/**
+	* 价格
+	*/
+	@ApiModelProperty(value = "价格")
+	private BigDecimal price;
+	/**
+	* 单位
+	*/
+	@ApiModelProperty(value = "单位")
+	private String unit;
+	/**
+	* 排序
+	*/
+	@ApiModelProperty(value = "排序")
+	private Integer sort;
+	/**
+	* 状态 0-禁用 1-启用
+	*/
+	@ApiModelProperty(value = "状态 0-禁用 1-启用")
+	private Integer status;
+
+
+}

+ 57 - 0
src/main/java/org/springblade/modules/custom/entity/WineCaseStuffing.java

@@ -0,0 +1,57 @@
+package org.springblade.modules.custom.entity;
+
+import java.math.BigDecimal;
+import org.springblade.common.base.BaseEntity;
+import com.baomidou.mybatisplus.annotation.TableName;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+
+/**
+ * 酒箱填充物表实体类
+ *
+ * @author zzyd
+ * @since 2023-02-07
+ */
+@Data
+@TableName("biz_wine_case_stuffing")
+@EqualsAndHashCode(callSuper = true)
+@ApiModel(value = "WineCaseStuffing对象", description = "酒箱填充物表")
+public class WineCaseStuffing extends BaseEntity {
+
+	private static final long serialVersionUID = 1L;
+
+	/**
+	* 名称
+	*/
+	@ApiModelProperty(value = "名称")
+	private String name;
+	/**
+	* 图片
+	*/
+	@ApiModelProperty(value = "图片")
+	private String image;
+	/**
+	* 价格
+	*/
+	@ApiModelProperty(value = "价格")
+	private BigDecimal price;
+	/**
+	* 单位
+	*/
+	@ApiModelProperty(value = "单位")
+	private String unit;
+	/**
+	* 排序
+	*/
+	@ApiModelProperty(value = "排序")
+	private Integer sort;
+	/**
+	* 状态 0-禁用 1-启用
+	*/
+	@ApiModelProperty(value = "状态 0-禁用 1-启用")
+	private Integer status;
+
+
+}

+ 42 - 0
src/main/java/org/springblade/modules/custom/mapper/BottleBodyMapper.java

@@ -0,0 +1,42 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.mapper;
+
+import org.springblade.modules.custom.entity.BottleBody;
+import org.springblade.modules.custom.vo.BottleBodyVO;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import java.util.List;
+
+/**
+ * 瓶身表 Mapper 接口
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+public interface BottleBodyMapper extends BaseMapper<BottleBody> {
+
+	/**
+	 * 自定义分页
+	 *
+	 * @param page
+	 * @param bottleBody
+	 * @return
+	 */
+	List<BottleBodyVO> selectBottleBodyPage(IPage page, BottleBodyVO bottleBody);
+
+}

+ 27 - 0
src/main/java/org/springblade/modules/custom/mapper/BottleBodyMapper.xml

@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="org.springblade.modules.custom.mapper.BottleBodyMapper">
+
+    <!-- 通用查询映射结果 -->
+    <resultMap id="bottleBodyResultMap" type="org.springblade.modules.custom.entity.BottleBody">
+        <result column="id" property="id"/>
+        <result column="is_delete" property="isDelete"/>
+        <result column="create_user_id" property="createUserId"/>
+        <result column="create_time" property="createTime"/>
+        <result column="update_user_id" property="updateUserId"/>
+        <result column="update_time" property="updateTime"/>
+        <result column="name" property="name"/>
+        <result column="image" property="image"/>
+        <result column="capacity" property="capacity"/>
+        <result column="price" property="price"/>
+        <result column="unit" property="unit"/>
+        <result column="sort" property="sort"/>
+        <result column="status" property="status"/>
+    </resultMap>
+
+
+    <select id="selectBottleBodyPage" resultMap="bottleBodyResultMap">
+        select * from biz_bottle_body where is_deleted = 0
+    </select>
+
+</mapper>

+ 42 - 0
src/main/java/org/springblade/modules/custom/mapper/BottleCapMapper.java

@@ -0,0 +1,42 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.mapper;
+
+import org.springblade.modules.custom.entity.BottleCap;
+import org.springblade.modules.custom.vo.BottleCapVO;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import java.util.List;
+
+/**
+ * 瓶盖表 Mapper 接口
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+public interface BottleCapMapper extends BaseMapper<BottleCap> {
+
+	/**
+	 * 自定义分页
+	 *
+	 * @param page
+	 * @param bottleCap
+	 * @return
+	 */
+	List<BottleCapVO> selectBottleCapPage(IPage page, BottleCapVO bottleCap);
+
+}

+ 26 - 0
src/main/java/org/springblade/modules/custom/mapper/BottleCapMapper.xml

@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="org.springblade.modules.custom.mapper.BottleCapMapper">
+
+    <!-- 通用查询映射结果 -->
+    <resultMap id="bottleCapResultMap" type="org.springblade.modules.custom.entity.BottleCap">
+        <result column="id" property="id"/>
+        <result column="is_delete" property="isDelete"/>
+        <result column="create_user_id" property="createUserId"/>
+        <result column="create_time" property="createTime"/>
+        <result column="update_user_id" property="updateUserId"/>
+        <result column="update_time" property="updateTime"/>
+        <result column="name" property="name"/>
+        <result column="image" property="image"/>
+        <result column="price" property="price"/>
+        <result column="unit" property="unit"/>
+        <result column="sort" property="sort"/>
+        <result column="status" property="status"/>
+    </resultMap>
+
+
+    <select id="selectBottleCapPage" resultMap="bottleCapResultMap">
+        select * from biz_bottle_cap where is_deleted = 0
+    </select>
+
+</mapper>

+ 42 - 0
src/main/java/org/springblade/modules/custom/mapper/BottleLabelMapper.java

@@ -0,0 +1,42 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.mapper;
+
+import org.springblade.modules.custom.entity.BottleLabel;
+import org.springblade.modules.custom.vo.BottleLabelVO;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import java.util.List;
+
+/**
+ * 标贴表 Mapper 接口
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+public interface BottleLabelMapper extends BaseMapper<BottleLabel> {
+
+	/**
+	 * 自定义分页
+	 *
+	 * @param page
+	 * @param bottleLabel
+	 * @return
+	 */
+	List<BottleLabelVO> selectBottleLabelPage(IPage page, BottleLabelVO bottleLabel);
+
+}

+ 26 - 0
src/main/java/org/springblade/modules/custom/mapper/BottleLabelMapper.xml

@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="org.springblade.modules.custom.mapper.BottleLabelMapper">
+
+    <!-- 通用查询映射结果 -->
+    <resultMap id="bottleLabelResultMap" type="org.springblade.modules.custom.entity.BottleLabel">
+        <result column="id" property="id"/>
+        <result column="is_delete" property="isDelete"/>
+        <result column="create_user_id" property="createUserId"/>
+        <result column="create_time" property="createTime"/>
+        <result column="update_user_id" property="updateUserId"/>
+        <result column="update_time" property="updateTime"/>
+        <result column="name" property="name"/>
+        <result column="image" property="image"/>
+        <result column="price" property="price"/>
+        <result column="unit" property="unit"/>
+        <result column="sort" property="sort"/>
+        <result column="status" property="status"/>
+    </resultMap>
+
+
+    <select id="selectBottleLabelPage" resultMap="bottleLabelResultMap">
+        select * from biz_bottle_label where is_deleted = 0
+    </select>
+
+</mapper>

+ 42 - 0
src/main/java/org/springblade/modules/custom/mapper/WineBoxMapper.java

@@ -0,0 +1,42 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.mapper;
+
+import org.springblade.modules.custom.entity.WineBox;
+import org.springblade.modules.custom.vo.WineBoxVO;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import java.util.List;
+
+/**
+ * 酒盒表 Mapper 接口
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+public interface WineBoxMapper extends BaseMapper<WineBox> {
+
+	/**
+	 * 自定义分页
+	 *
+	 * @param page
+	 * @param wineBox
+	 * @return
+	 */
+	List<WineBoxVO> selectWineBoxPage(IPage page, WineBoxVO wineBox);
+
+}

+ 29 - 0
src/main/java/org/springblade/modules/custom/mapper/WineBoxMapper.xml

@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="org.springblade.modules.custom.mapper.WineBoxMapper">
+
+    <!-- 通用查询映射结果 -->
+    <resultMap id="wineBoxResultMap" type="org.springblade.modules.custom.entity.WineBox">
+        <result column="id" property="id"/>
+        <result column="is_delete" property="isDelete"/>
+        <result column="create_user_id" property="createUserId"/>
+        <result column="create_time" property="createTime"/>
+        <result column="update_user_id" property="updateUserId"/>
+        <result column="update_time" property="updateTime"/>
+        <result column="name" property="name"/>
+        <result column="image" property="image"/>
+        <result column="length" property="length"/>
+        <result column="width" property="width"/>
+        <result column="high" property="high"/>
+        <result column="price" property="price"/>
+        <result column="unit" property="unit"/>
+        <result column="sort" property="sort"/>
+        <result column="status" property="status"/>
+    </resultMap>
+
+
+    <select id="selectWineBoxPage" resultMap="wineBoxResultMap">
+        select * from biz_wine_box where is_deleted = 0
+    </select>
+
+</mapper>

+ 42 - 0
src/main/java/org/springblade/modules/custom/mapper/WineBoxStuffingMapper.java

@@ -0,0 +1,42 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.mapper;
+
+import org.springblade.modules.custom.entity.WineBoxStuffing;
+import org.springblade.modules.custom.vo.WineBoxStuffingVO;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import java.util.List;
+
+/**
+ * 酒盒填充物表 Mapper 接口
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+public interface WineBoxStuffingMapper extends BaseMapper<WineBoxStuffing> {
+
+	/**
+	 * 自定义分页
+	 *
+	 * @param page
+	 * @param wineBoxStuffing
+	 * @return
+	 */
+	List<WineBoxStuffingVO> selectWineBoxStuffingPage(IPage page, WineBoxStuffingVO wineBoxStuffing);
+
+}

+ 26 - 0
src/main/java/org/springblade/modules/custom/mapper/WineBoxStuffingMapper.xml

@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="org.springblade.modules.custom.mapper.WineBoxStuffingMapper">
+
+    <!-- 通用查询映射结果 -->
+    <resultMap id="wineBoxStuffingResultMap" type="org.springblade.modules.custom.entity.WineBoxStuffing">
+        <result column="id" property="id"/>
+        <result column="is_delete" property="isDelete"/>
+        <result column="create_user_id" property="createUserId"/>
+        <result column="create_time" property="createTime"/>
+        <result column="update_user_id" property="updateUserId"/>
+        <result column="update_time" property="updateTime"/>
+        <result column="name" property="name"/>
+        <result column="image" property="image"/>
+        <result column="price" property="price"/>
+        <result column="unit" property="unit"/>
+        <result column="sort" property="sort"/>
+        <result column="status" property="status"/>
+    </resultMap>
+
+
+    <select id="selectWineBoxStuffingPage" resultMap="wineBoxStuffingResultMap">
+        select * from biz_wine_box_stuffing where is_deleted = 0
+    </select>
+
+</mapper>

+ 42 - 0
src/main/java/org/springblade/modules/custom/mapper/WineCaseMapper.java

@@ -0,0 +1,42 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.mapper;
+
+import org.springblade.modules.custom.entity.WineCase;
+import org.springblade.modules.custom.vo.WineCaseVO;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import java.util.List;
+
+/**
+ * 酒箱表 Mapper 接口
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+public interface WineCaseMapper extends BaseMapper<WineCase> {
+
+	/**
+	 * 自定义分页
+	 *
+	 * @param page
+	 * @param wineCase
+	 * @return
+	 */
+	List<WineCaseVO> selectWineCasePage(IPage page, WineCaseVO wineCase);
+
+}

+ 29 - 0
src/main/java/org/springblade/modules/custom/mapper/WineCaseMapper.xml

@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="org.springblade.modules.custom.mapper.WineCaseMapper">
+
+    <!-- 通用查询映射结果 -->
+    <resultMap id="wineCaseResultMap" type="org.springblade.modules.custom.entity.WineCase">
+        <result column="id" property="id"/>
+        <result column="is_delete" property="isDelete"/>
+        <result column="create_user_id" property="createUserId"/>
+        <result column="create_time" property="createTime"/>
+        <result column="update_user_id" property="updateUserId"/>
+        <result column="update_time" property="updateTime"/>
+        <result column="name" property="name"/>
+        <result column="image" property="image"/>
+        <result column="length" property="length"/>
+        <result column="width" property="width"/>
+        <result column="high" property="high"/>
+        <result column="price" property="price"/>
+        <result column="unit" property="unit"/>
+        <result column="sort" property="sort"/>
+        <result column="status" property="status"/>
+    </resultMap>
+
+
+    <select id="selectWineCasePage" resultMap="wineCaseResultMap">
+        select * from biz_wine_case where is_deleted = 0
+    </select>
+
+</mapper>

+ 42 - 0
src/main/java/org/springblade/modules/custom/mapper/WineCaseStuffingMapper.java

@@ -0,0 +1,42 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.mapper;
+
+import org.springblade.modules.custom.entity.WineCaseStuffing;
+import org.springblade.modules.custom.vo.WineCaseStuffingVO;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import java.util.List;
+
+/**
+ * 酒箱填充物表 Mapper 接口
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+public interface WineCaseStuffingMapper extends BaseMapper<WineCaseStuffing> {
+
+	/**
+	 * 自定义分页
+	 *
+	 * @param page
+	 * @param wineCaseStuffing
+	 * @return
+	 */
+	List<WineCaseStuffingVO> selectWineCaseStuffingPage(IPage page, WineCaseStuffingVO wineCaseStuffing);
+
+}

+ 26 - 0
src/main/java/org/springblade/modules/custom/mapper/WineCaseStuffingMapper.xml

@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="org.springblade.modules.custom.mapper.WineCaseStuffingMapper">
+
+    <!-- 通用查询映射结果 -->
+    <resultMap id="wineCaseStuffingResultMap" type="org.springblade.modules.custom.entity.WineCaseStuffing">
+        <result column="id" property="id"/>
+        <result column="is_delete" property="isDelete"/>
+        <result column="create_user_id" property="createUserId"/>
+        <result column="create_time" property="createTime"/>
+        <result column="update_user_id" property="updateUserId"/>
+        <result column="update_time" property="updateTime"/>
+        <result column="name" property="name"/>
+        <result column="image" property="image"/>
+        <result column="price" property="price"/>
+        <result column="unit" property="unit"/>
+        <result column="sort" property="sort"/>
+        <result column="status" property="status"/>
+    </resultMap>
+
+
+    <select id="selectWineCaseStuffingPage" resultMap="wineCaseStuffingResultMap">
+        select * from biz_wine_case_stuffing where is_deleted = 0
+    </select>
+
+</mapper>

+ 41 - 0
src/main/java/org/springblade/modules/custom/service/IBottleBodyService.java

@@ -0,0 +1,41 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.service;
+
+import org.springblade.modules.custom.entity.BottleBody;
+import org.springblade.modules.custom.vo.BottleBodyVO;
+import com.baomidou.mybatisplus.extension.service.IService;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+
+/**
+ * 瓶身表 服务类
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+public interface IBottleBodyService extends IService<BottleBody> {
+
+	/**
+	 * 自定义分页
+	 *
+	 * @param page
+	 * @param bottleBody
+	 * @return
+	 */
+	IPage<BottleBodyVO> selectBottleBodyPage(IPage<BottleBodyVO> page, BottleBodyVO bottleBody);
+
+}

+ 41 - 0
src/main/java/org/springblade/modules/custom/service/IBottleCapService.java

@@ -0,0 +1,41 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.service;
+
+import org.springblade.modules.custom.entity.BottleCap;
+import org.springblade.modules.custom.vo.BottleCapVO;
+import com.baomidou.mybatisplus.extension.service.IService;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+
+/**
+ * 瓶盖表 服务类
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+public interface IBottleCapService extends IService<BottleCap> {
+
+	/**
+	 * 自定义分页
+	 *
+	 * @param page
+	 * @param bottleCap
+	 * @return
+	 */
+	IPage<BottleCapVO> selectBottleCapPage(IPage<BottleCapVO> page, BottleCapVO bottleCap);
+
+}

+ 41 - 0
src/main/java/org/springblade/modules/custom/service/IBottleLabelService.java

@@ -0,0 +1,41 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.service;
+
+import org.springblade.modules.custom.entity.BottleLabel;
+import org.springblade.modules.custom.vo.BottleLabelVO;
+import com.baomidou.mybatisplus.extension.service.IService;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+
+/**
+ * 标贴表 服务类
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+public interface IBottleLabelService extends IService<BottleLabel> {
+
+	/**
+	 * 自定义分页
+	 *
+	 * @param page
+	 * @param bottleLabel
+	 * @return
+	 */
+	IPage<BottleLabelVO> selectBottleLabelPage(IPage<BottleLabelVO> page, BottleLabelVO bottleLabel);
+
+}

+ 41 - 0
src/main/java/org/springblade/modules/custom/service/IWineBoxService.java

@@ -0,0 +1,41 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.service;
+
+import org.springblade.modules.custom.entity.WineBox;
+import org.springblade.modules.custom.vo.WineBoxVO;
+import com.baomidou.mybatisplus.extension.service.IService;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+
+/**
+ * 酒盒表 服务类
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+public interface IWineBoxService extends IService<WineBox> {
+
+	/**
+	 * 自定义分页
+	 *
+	 * @param page
+	 * @param wineBox
+	 * @return
+	 */
+	IPage<WineBoxVO> selectWineBoxPage(IPage<WineBoxVO> page, WineBoxVO wineBox);
+
+}

+ 41 - 0
src/main/java/org/springblade/modules/custom/service/IWineBoxStuffingService.java

@@ -0,0 +1,41 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.service;
+
+import org.springblade.modules.custom.entity.WineBoxStuffing;
+import org.springblade.modules.custom.vo.WineBoxStuffingVO;
+import com.baomidou.mybatisplus.extension.service.IService;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+
+/**
+ * 酒盒填充物表 服务类
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+public interface IWineBoxStuffingService extends IService<WineBoxStuffing> {
+
+	/**
+	 * 自定义分页
+	 *
+	 * @param page
+	 * @param wineBoxStuffing
+	 * @return
+	 */
+	IPage<WineBoxStuffingVO> selectWineBoxStuffingPage(IPage<WineBoxStuffingVO> page, WineBoxStuffingVO wineBoxStuffing);
+
+}

+ 41 - 0
src/main/java/org/springblade/modules/custom/service/IWineCaseService.java

@@ -0,0 +1,41 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.service;
+
+import org.springblade.modules.custom.entity.WineCase;
+import org.springblade.modules.custom.vo.WineCaseVO;
+import com.baomidou.mybatisplus.extension.service.IService;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+
+/**
+ * 酒箱表 服务类
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+public interface IWineCaseService extends IService<WineCase> {
+
+	/**
+	 * 自定义分页
+	 *
+	 * @param page
+	 * @param wineCase
+	 * @return
+	 */
+	IPage<WineCaseVO> selectWineCasePage(IPage<WineCaseVO> page, WineCaseVO wineCase);
+
+}

+ 41 - 0
src/main/java/org/springblade/modules/custom/service/IWineCaseStuffingService.java

@@ -0,0 +1,41 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.service;
+
+import org.springblade.modules.custom.entity.WineCaseStuffing;
+import org.springblade.modules.custom.vo.WineCaseStuffingVO;
+import com.baomidou.mybatisplus.extension.service.IService;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+
+/**
+ * 酒箱填充物表 服务类
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+public interface IWineCaseStuffingService extends IService<WineCaseStuffing> {
+
+	/**
+	 * 自定义分页
+	 *
+	 * @param page
+	 * @param wineCaseStuffing
+	 * @return
+	 */
+	IPage<WineCaseStuffingVO> selectWineCaseStuffingPage(IPage<WineCaseStuffingVO> page, WineCaseStuffingVO wineCaseStuffing);
+
+}

+ 41 - 0
src/main/java/org/springblade/modules/custom/service/impl/BottleBodyServiceImpl.java

@@ -0,0 +1,41 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.service.impl;
+
+import org.springblade.modules.custom.entity.BottleBody;
+import org.springblade.modules.custom.vo.BottleBodyVO;
+import org.springblade.modules.custom.mapper.BottleBodyMapper;
+import org.springblade.modules.custom.service.IBottleBodyService;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import org.springframework.stereotype.Service;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+
+/**
+ * 瓶身表 服务实现类
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+@Service
+public class BottleBodyServiceImpl extends ServiceImpl<BottleBodyMapper, BottleBody> implements IBottleBodyService {
+
+	@Override
+	public IPage<BottleBodyVO> selectBottleBodyPage(IPage<BottleBodyVO> page, BottleBodyVO bottleBody) {
+		return page.setRecords(baseMapper.selectBottleBodyPage(page, bottleBody));
+	}
+
+}

+ 41 - 0
src/main/java/org/springblade/modules/custom/service/impl/BottleCapServiceImpl.java

@@ -0,0 +1,41 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.service.impl;
+
+import org.springblade.modules.custom.entity.BottleCap;
+import org.springblade.modules.custom.vo.BottleCapVO;
+import org.springblade.modules.custom.mapper.BottleCapMapper;
+import org.springblade.modules.custom.service.IBottleCapService;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import org.springframework.stereotype.Service;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+
+/**
+ * 瓶盖表 服务实现类
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+@Service
+public class BottleCapServiceImpl extends ServiceImpl<BottleCapMapper, BottleCap> implements IBottleCapService {
+
+	@Override
+	public IPage<BottleCapVO> selectBottleCapPage(IPage<BottleCapVO> page, BottleCapVO bottleCap) {
+		return page.setRecords(baseMapper.selectBottleCapPage(page, bottleCap));
+	}
+
+}

+ 41 - 0
src/main/java/org/springblade/modules/custom/service/impl/BottleLabelServiceImpl.java

@@ -0,0 +1,41 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.service.impl;
+
+import org.springblade.modules.custom.entity.BottleLabel;
+import org.springblade.modules.custom.vo.BottleLabelVO;
+import org.springblade.modules.custom.mapper.BottleLabelMapper;
+import org.springblade.modules.custom.service.IBottleLabelService;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import org.springframework.stereotype.Service;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+
+/**
+ * 标贴表 服务实现类
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+@Service
+public class BottleLabelServiceImpl extends ServiceImpl<BottleLabelMapper, BottleLabel> implements IBottleLabelService {
+
+	@Override
+	public IPage<BottleLabelVO> selectBottleLabelPage(IPage<BottleLabelVO> page, BottleLabelVO bottleLabel) {
+		return page.setRecords(baseMapper.selectBottleLabelPage(page, bottleLabel));
+	}
+
+}

+ 41 - 0
src/main/java/org/springblade/modules/custom/service/impl/WineBoxServiceImpl.java

@@ -0,0 +1,41 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.service.impl;
+
+import org.springblade.modules.custom.entity.WineBox;
+import org.springblade.modules.custom.vo.WineBoxVO;
+import org.springblade.modules.custom.mapper.WineBoxMapper;
+import org.springblade.modules.custom.service.IWineBoxService;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import org.springframework.stereotype.Service;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+
+/**
+ * 酒盒表 服务实现类
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+@Service
+public class WineBoxServiceImpl extends ServiceImpl<WineBoxMapper, WineBox> implements IWineBoxService {
+
+	@Override
+	public IPage<WineBoxVO> selectWineBoxPage(IPage<WineBoxVO> page, WineBoxVO wineBox) {
+		return page.setRecords(baseMapper.selectWineBoxPage(page, wineBox));
+	}
+
+}

+ 41 - 0
src/main/java/org/springblade/modules/custom/service/impl/WineBoxStuffingServiceImpl.java

@@ -0,0 +1,41 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.service.impl;
+
+import org.springblade.modules.custom.entity.WineBoxStuffing;
+import org.springblade.modules.custom.vo.WineBoxStuffingVO;
+import org.springblade.modules.custom.mapper.WineBoxStuffingMapper;
+import org.springblade.modules.custom.service.IWineBoxStuffingService;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import org.springframework.stereotype.Service;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+
+/**
+ * 酒盒填充物表 服务实现类
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+@Service
+public class WineBoxStuffingServiceImpl extends ServiceImpl<WineBoxStuffingMapper, WineBoxStuffing> implements IWineBoxStuffingService {
+
+	@Override
+	public IPage<WineBoxStuffingVO> selectWineBoxStuffingPage(IPage<WineBoxStuffingVO> page, WineBoxStuffingVO wineBoxStuffing) {
+		return page.setRecords(baseMapper.selectWineBoxStuffingPage(page, wineBoxStuffing));
+	}
+
+}

+ 41 - 0
src/main/java/org/springblade/modules/custom/service/impl/WineCaseServiceImpl.java

@@ -0,0 +1,41 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.service.impl;
+
+import org.springblade.modules.custom.entity.WineCase;
+import org.springblade.modules.custom.vo.WineCaseVO;
+import org.springblade.modules.custom.mapper.WineCaseMapper;
+import org.springblade.modules.custom.service.IWineCaseService;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import org.springframework.stereotype.Service;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+
+/**
+ * 酒箱表 服务实现类
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+@Service
+public class WineCaseServiceImpl extends ServiceImpl<WineCaseMapper, WineCase> implements IWineCaseService {
+
+	@Override
+	public IPage<WineCaseVO> selectWineCasePage(IPage<WineCaseVO> page, WineCaseVO wineCase) {
+		return page.setRecords(baseMapper.selectWineCasePage(page, wineCase));
+	}
+
+}

+ 41 - 0
src/main/java/org/springblade/modules/custom/service/impl/WineCaseStuffingServiceImpl.java

@@ -0,0 +1,41 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.service.impl;
+
+import org.springblade.modules.custom.entity.WineCaseStuffing;
+import org.springblade.modules.custom.vo.WineCaseStuffingVO;
+import org.springblade.modules.custom.mapper.WineCaseStuffingMapper;
+import org.springblade.modules.custom.service.IWineCaseStuffingService;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import org.springframework.stereotype.Service;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+
+/**
+ * 酒箱填充物表 服务实现类
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+@Service
+public class WineCaseStuffingServiceImpl extends ServiceImpl<WineCaseStuffingMapper, WineCaseStuffing> implements IWineCaseStuffingService {
+
+	@Override
+	public IPage<WineCaseStuffingVO> selectWineCaseStuffingPage(IPage<WineCaseStuffingVO> page, WineCaseStuffingVO wineCaseStuffing) {
+		return page.setRecords(baseMapper.selectWineCaseStuffingPage(page, wineCaseStuffing));
+	}
+
+}

+ 36 - 0
src/main/java/org/springblade/modules/custom/vo/BottleBodyVO.java

@@ -0,0 +1,36 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.vo;
+
+import org.springblade.modules.custom.entity.BottleBody;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import io.swagger.annotations.ApiModel;
+
+/**
+ * 瓶身表视图实体类
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+@Data
+@EqualsAndHashCode(callSuper = true)
+@ApiModel(value = "BottleBodyVO对象", description = "瓶身表")
+public class BottleBodyVO extends BottleBody {
+	private static final long serialVersionUID = 1L;
+
+}

+ 36 - 0
src/main/java/org/springblade/modules/custom/vo/BottleCapVO.java

@@ -0,0 +1,36 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.vo;
+
+import org.springblade.modules.custom.entity.BottleCap;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import io.swagger.annotations.ApiModel;
+
+/**
+ * 瓶盖表视图实体类
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+@Data
+@EqualsAndHashCode(callSuper = true)
+@ApiModel(value = "BottleCapVO对象", description = "瓶盖表")
+public class BottleCapVO extends BottleCap {
+	private static final long serialVersionUID = 1L;
+
+}

+ 36 - 0
src/main/java/org/springblade/modules/custom/vo/BottleLabelVO.java

@@ -0,0 +1,36 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.vo;
+
+import org.springblade.modules.custom.entity.BottleLabel;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import io.swagger.annotations.ApiModel;
+
+/**
+ * 标贴表视图实体类
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+@Data
+@EqualsAndHashCode(callSuper = true)
+@ApiModel(value = "BottleLabelVO对象", description = "标贴表")
+public class BottleLabelVO extends BottleLabel {
+	private static final long serialVersionUID = 1L;
+
+}

+ 36 - 0
src/main/java/org/springblade/modules/custom/vo/WineBoxStuffingVO.java

@@ -0,0 +1,36 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.vo;
+
+import org.springblade.modules.custom.entity.WineBoxStuffing;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import io.swagger.annotations.ApiModel;
+
+/**
+ * 酒盒填充物表视图实体类
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+@Data
+@EqualsAndHashCode(callSuper = true)
+@ApiModel(value = "WineBoxStuffingVO对象", description = "酒盒填充物表")
+public class WineBoxStuffingVO extends WineBoxStuffing {
+	private static final long serialVersionUID = 1L;
+
+}

+ 36 - 0
src/main/java/org/springblade/modules/custom/vo/WineBoxVO.java

@@ -0,0 +1,36 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.vo;
+
+import org.springblade.modules.custom.entity.WineBox;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import io.swagger.annotations.ApiModel;
+
+/**
+ * 酒盒表视图实体类
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+@Data
+@EqualsAndHashCode(callSuper = true)
+@ApiModel(value = "WineBoxVO对象", description = "酒盒表")
+public class WineBoxVO extends WineBox {
+	private static final long serialVersionUID = 1L;
+
+}

+ 36 - 0
src/main/java/org/springblade/modules/custom/vo/WineCaseStuffingVO.java

@@ -0,0 +1,36 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.vo;
+
+import org.springblade.modules.custom.entity.WineCaseStuffing;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import io.swagger.annotations.ApiModel;
+
+/**
+ * 酒箱填充物表视图实体类
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+@Data
+@EqualsAndHashCode(callSuper = true)
+@ApiModel(value = "WineCaseStuffingVO对象", description = "酒箱填充物表")
+public class WineCaseStuffingVO extends WineCaseStuffing {
+	private static final long serialVersionUID = 1L;
+
+}

+ 36 - 0
src/main/java/org/springblade/modules/custom/vo/WineCaseVO.java

@@ -0,0 +1,36 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.vo;
+
+import org.springblade.modules.custom.entity.WineCase;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import io.swagger.annotations.ApiModel;
+
+/**
+ * 酒箱表视图实体类
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+@Data
+@EqualsAndHashCode(callSuper = true)
+@ApiModel(value = "WineCaseVO对象", description = "酒箱表")
+public class WineCaseVO extends WineCase {
+	private static final long serialVersionUID = 1L;
+
+}

+ 49 - 0
src/main/java/org/springblade/modules/custom/wrapper/BottleBodyWrapper.java

@@ -0,0 +1,49 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.wrapper;
+
+import org.springblade.core.mp.support.BaseEntityWrapper;
+import org.springblade.core.tool.utils.BeanUtil;
+import org.springblade.modules.custom.entity.BottleBody;
+import org.springblade.modules.custom.vo.BottleBodyVO;
+import java.util.Objects;
+
+/**
+ * 瓶身表包装类,返回视图层所需的字段
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+public class BottleBodyWrapper extends BaseEntityWrapper<BottleBody, BottleBodyVO>  {
+
+	public static BottleBodyWrapper build() {
+		return new BottleBodyWrapper();
+ 	}
+
+	@Override
+	public BottleBodyVO entityVO(BottleBody bottleBody) {
+		BottleBodyVO bottleBodyVO = Objects.requireNonNull(BeanUtil.copy(bottleBody, BottleBodyVO.class));
+
+		//User createUser = UserCache.getUser(bottleBody.getCreateUser());
+		//User updateUser = UserCache.getUser(bottleBody.getUpdateUser());
+		//bottleBodyVO.setCreateUserName(createUser.getName());
+		//bottleBodyVO.setUpdateUserName(updateUser.getName());
+
+		return bottleBodyVO;
+	}
+
+}

+ 49 - 0
src/main/java/org/springblade/modules/custom/wrapper/BottleCapWrapper.java

@@ -0,0 +1,49 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.wrapper;
+
+import org.springblade.core.mp.support.BaseEntityWrapper;
+import org.springblade.core.tool.utils.BeanUtil;
+import org.springblade.modules.custom.entity.BottleCap;
+import org.springblade.modules.custom.vo.BottleCapVO;
+import java.util.Objects;
+
+/**
+ * 瓶盖表包装类,返回视图层所需的字段
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+public class BottleCapWrapper extends BaseEntityWrapper<BottleCap, BottleCapVO>  {
+
+	public static BottleCapWrapper build() {
+		return new BottleCapWrapper();
+ 	}
+
+	@Override
+	public BottleCapVO entityVO(BottleCap bottleCap) {
+		BottleCapVO bottleCapVO = Objects.requireNonNull(BeanUtil.copy(bottleCap, BottleCapVO.class));
+
+		//User createUser = UserCache.getUser(bottleCap.getCreateUser());
+		//User updateUser = UserCache.getUser(bottleCap.getUpdateUser());
+		//bottleCapVO.setCreateUserName(createUser.getName());
+		//bottleCapVO.setUpdateUserName(updateUser.getName());
+
+		return bottleCapVO;
+	}
+
+}

+ 49 - 0
src/main/java/org/springblade/modules/custom/wrapper/BottleLabelWrapper.java

@@ -0,0 +1,49 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.wrapper;
+
+import org.springblade.core.mp.support.BaseEntityWrapper;
+import org.springblade.core.tool.utils.BeanUtil;
+import org.springblade.modules.custom.entity.BottleLabel;
+import org.springblade.modules.custom.vo.BottleLabelVO;
+import java.util.Objects;
+
+/**
+ * 标贴表包装类,返回视图层所需的字段
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+public class BottleLabelWrapper extends BaseEntityWrapper<BottleLabel, BottleLabelVO>  {
+
+	public static BottleLabelWrapper build() {
+		return new BottleLabelWrapper();
+ 	}
+
+	@Override
+	public BottleLabelVO entityVO(BottleLabel bottleLabel) {
+		BottleLabelVO bottleLabelVO = Objects.requireNonNull(BeanUtil.copy(bottleLabel, BottleLabelVO.class));
+
+		//User createUser = UserCache.getUser(bottleLabel.getCreateUser());
+		//User updateUser = UserCache.getUser(bottleLabel.getUpdateUser());
+		//bottleLabelVO.setCreateUserName(createUser.getName());
+		//bottleLabelVO.setUpdateUserName(updateUser.getName());
+
+		return bottleLabelVO;
+	}
+
+}

+ 49 - 0
src/main/java/org/springblade/modules/custom/wrapper/WineBoxStuffingWrapper.java

@@ -0,0 +1,49 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.wrapper;
+
+import org.springblade.core.mp.support.BaseEntityWrapper;
+import org.springblade.core.tool.utils.BeanUtil;
+import org.springblade.modules.custom.entity.WineBoxStuffing;
+import org.springblade.modules.custom.vo.WineBoxStuffingVO;
+import java.util.Objects;
+
+/**
+ * 酒盒填充物表包装类,返回视图层所需的字段
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+public class WineBoxStuffingWrapper extends BaseEntityWrapper<WineBoxStuffing, WineBoxStuffingVO>  {
+
+	public static WineBoxStuffingWrapper build() {
+		return new WineBoxStuffingWrapper();
+ 	}
+
+	@Override
+	public WineBoxStuffingVO entityVO(WineBoxStuffing wineBoxStuffing) {
+		WineBoxStuffingVO wineBoxStuffingVO = Objects.requireNonNull(BeanUtil.copy(wineBoxStuffing, WineBoxStuffingVO.class));
+
+		//User createUser = UserCache.getUser(wineBoxStuffing.getCreateUser());
+		//User updateUser = UserCache.getUser(wineBoxStuffing.getUpdateUser());
+		//wineBoxStuffingVO.setCreateUserName(createUser.getName());
+		//wineBoxStuffingVO.setUpdateUserName(updateUser.getName());
+
+		return wineBoxStuffingVO;
+	}
+
+}

+ 49 - 0
src/main/java/org/springblade/modules/custom/wrapper/WineBoxWrapper.java

@@ -0,0 +1,49 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.wrapper;
+
+import org.springblade.core.mp.support.BaseEntityWrapper;
+import org.springblade.core.tool.utils.BeanUtil;
+import org.springblade.modules.custom.entity.WineBox;
+import org.springblade.modules.custom.vo.WineBoxVO;
+import java.util.Objects;
+
+/**
+ * 酒盒表包装类,返回视图层所需的字段
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+public class WineBoxWrapper extends BaseEntityWrapper<WineBox, WineBoxVO>  {
+
+	public static WineBoxWrapper build() {
+		return new WineBoxWrapper();
+ 	}
+
+	@Override
+	public WineBoxVO entityVO(WineBox wineBox) {
+		WineBoxVO wineBoxVO = Objects.requireNonNull(BeanUtil.copy(wineBox, WineBoxVO.class));
+
+		//User createUser = UserCache.getUser(wineBox.getCreateUser());
+		//User updateUser = UserCache.getUser(wineBox.getUpdateUser());
+		//wineBoxVO.setCreateUserName(createUser.getName());
+		//wineBoxVO.setUpdateUserName(updateUser.getName());
+
+		return wineBoxVO;
+	}
+
+}

+ 49 - 0
src/main/java/org/springblade/modules/custom/wrapper/WineCaseStuffingWrapper.java

@@ -0,0 +1,49 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.wrapper;
+
+import org.springblade.core.mp.support.BaseEntityWrapper;
+import org.springblade.core.tool.utils.BeanUtil;
+import org.springblade.modules.custom.entity.WineCaseStuffing;
+import org.springblade.modules.custom.vo.WineCaseStuffingVO;
+import java.util.Objects;
+
+/**
+ * 酒箱填充物表包装类,返回视图层所需的字段
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+public class WineCaseStuffingWrapper extends BaseEntityWrapper<WineCaseStuffing, WineCaseStuffingVO>  {
+
+	public static WineCaseStuffingWrapper build() {
+		return new WineCaseStuffingWrapper();
+ 	}
+
+	@Override
+	public WineCaseStuffingVO entityVO(WineCaseStuffing wineCaseStuffing) {
+		WineCaseStuffingVO wineCaseStuffingVO = Objects.requireNonNull(BeanUtil.copy(wineCaseStuffing, WineCaseStuffingVO.class));
+
+		//User createUser = UserCache.getUser(wineCaseStuffing.getCreateUser());
+		//User updateUser = UserCache.getUser(wineCaseStuffing.getUpdateUser());
+		//wineCaseStuffingVO.setCreateUserName(createUser.getName());
+		//wineCaseStuffingVO.setUpdateUserName(updateUser.getName());
+
+		return wineCaseStuffingVO;
+	}
+
+}

+ 49 - 0
src/main/java/org/springblade/modules/custom/wrapper/WineCaseWrapper.java

@@ -0,0 +1,49 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.modules.custom.wrapper;
+
+import org.springblade.core.mp.support.BaseEntityWrapper;
+import org.springblade.core.tool.utils.BeanUtil;
+import org.springblade.modules.custom.entity.WineCase;
+import org.springblade.modules.custom.vo.WineCaseVO;
+import java.util.Objects;
+
+/**
+ * 酒箱表包装类,返回视图层所需的字段
+ *
+ * @author BladeX
+ * @since 2023-02-07
+ */
+public class WineCaseWrapper extends BaseEntityWrapper<WineCase, WineCaseVO>  {
+
+	public static WineCaseWrapper build() {
+		return new WineCaseWrapper();
+ 	}
+
+	@Override
+	public WineCaseVO entityVO(WineCase wineCase) {
+		WineCaseVO wineCaseVO = Objects.requireNonNull(BeanUtil.copy(wineCase, WineCaseVO.class));
+
+		//User createUser = UserCache.getUser(wineCase.getCreateUser());
+		//User updateUser = UserCache.getUser(wineCase.getUpdateUser());
+		//wineCaseVO.setCreateUserName(createUser.getName());
+		//wineCaseVO.setUpdateUserName(updateUser.getName());
+
+		return wineCaseVO;
+	}
+
+}

+ 10 - 0
src/main/java/sql/bottlebody.menu.mysql

@@ -0,0 +1,10 @@
+INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
+VALUES ('1622883671948148743', 1622794302386204674, 'bottlebody', '瓶身管理', 'menu', '/custom/bottlebody', NULL, 1, 1, 0, 1, NULL, 0);
+INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
+VALUES ('1622883671948148744', '1622883671948148743', 'bottlebody_add', '新增', 'add', '/custom/bottlebody/add', 'plus', 1, 2, 1, 1, NULL, 0);
+INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
+VALUES ('1622883671948148745', '1622883671948148743', 'bottlebody_edit', '修改', 'edit', '/custom/bottlebody/edit', 'form', 2, 2, 2, 1, NULL, 0);
+INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
+VALUES ('1622883671948148746', '1622883671948148743', 'bottlebody_delete', '删除', 'delete', '/api/custom/bottlebody/remove', 'delete', 3, 2, 3, 1, NULL, 0);
+INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
+VALUES ('1622883671948148747', '1622883671948148743', 'bottlebody_view', '查看', 'view', '/custom/bottlebody/view', 'file-text', 4, 2, 2, 1, NULL, 0);

+ 10 - 0
src/main/java/sql/bottlecap.menu.mysql

@@ -0,0 +1,10 @@
+INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
+VALUES ('1622873947487887367', 1622794302386204674, 'bottlecap', '定制酒', 'menu', '/custom/bottlecap', NULL, 1, 1, 0, 1, NULL, 0);
+INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
+VALUES ('1622873947487887368', '1622873947487887367', 'bottlecap_add', '新增', 'add', '/custom/bottlecap/add', 'plus', 1, 2, 1, 1, NULL, 0);
+INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
+VALUES ('1622873947487887369', '1622873947487887367', 'bottlecap_edit', '修改', 'edit', '/custom/bottlecap/edit', 'form', 2, 2, 2, 1, NULL, 0);
+INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
+VALUES ('1622873947487887370', '1622873947487887367', 'bottlecap_delete', '删除', 'delete', '/api/custom/bottlecap/remove', 'delete', 3, 2, 3, 1, NULL, 0);
+INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
+VALUES ('1622873947487887371', '1622873947487887367', 'bottlecap_view', '查看', 'view', '/custom/bottlecap/view', 'file-text', 4, 2, 2, 1, NULL, 0);

+ 10 - 0
src/main/java/sql/bottlelabel.menu.mysql

@@ -0,0 +1,10 @@
+INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
+VALUES ('1622884606669766663', 1622794302386204674, 'bottlelabel', '标贴管理', 'menu', '/custom/bottlelabel', NULL, 1, 1, 0, 1, NULL, 0);
+INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
+VALUES ('1622884606669766664', '1622884606669766663', 'bottlelabel_add', '新增', 'add', '/custom/bottlelabel/add', 'plus', 1, 2, 1, 1, NULL, 0);
+INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
+VALUES ('1622884606669766665', '1622884606669766663', 'bottlelabel_edit', '修改', 'edit', '/custom/bottlelabel/edit', 'form', 2, 2, 2, 1, NULL, 0);
+INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
+VALUES ('1622884606669766666', '1622884606669766663', 'bottlelabel_delete', '删除', 'delete', '/api/custom/bottlelabel/remove', 'delete', 3, 2, 3, 1, NULL, 0);
+INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
+VALUES ('1622884606669766667', '1622884606669766663', 'bottlelabel_view', '查看', 'view', '/custom/bottlelabel/view', 'file-text', 4, 2, 2, 1, NULL, 0);

+ 10 - 0
src/main/java/sql/winebox.menu.mysql

@@ -0,0 +1,10 @@
+INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
+VALUES ('1622884608687226887', 1622794302386204674, 'winebox', '酒盒管理', 'menu', '/custom/winebox', NULL, 1, 1, 0, 1, NULL, 0);
+INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
+VALUES ('1622884608687226888', '1622884608687226887', 'winebox_add', '新增', 'add', '/custom/winebox/add', 'plus', 1, 2, 1, 1, NULL, 0);
+INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
+VALUES ('1622884608687226889', '1622884608687226887', 'winebox_edit', '修改', 'edit', '/custom/winebox/edit', 'form', 2, 2, 2, 1, NULL, 0);
+INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
+VALUES ('1622884608687226890', '1622884608687226887', 'winebox_delete', '删除', 'delete', '/api/custom/winebox/remove', 'delete', 3, 2, 3, 1, NULL, 0);
+INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
+VALUES ('1622884608687226891', '1622884608687226887', 'winebox_view', '查看', 'view', '/custom/winebox/view', 'file-text', 4, 2, 2, 1, NULL, 0);

+ 10 - 0
src/main/java/sql/wineboxstuffing.menu.mysql

@@ -0,0 +1,10 @@
+INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
+VALUES ('1622884609714831362', 1622794302386204674, 'wineboxstuffing', '酒盒填充物管理', 'menu', '/custom/wineboxstuffing', NULL, 1, 1, 0, 1, NULL, 0);
+INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
+VALUES ('1622884609714831363', '1622884609714831362', 'wineboxstuffing_add', '新增', 'add', '/custom/wineboxstuffing/add', 'plus', 1, 2, 1, 1, NULL, 0);
+INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
+VALUES ('1622884609714831364', '1622884609714831362', 'wineboxstuffing_edit', '修改', 'edit', '/custom/wineboxstuffing/edit', 'form', 2, 2, 2, 1, NULL, 0);
+INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
+VALUES ('1622884609714831365', '1622884609714831362', 'wineboxstuffing_delete', '删除', 'delete', '/api/custom/wineboxstuffing/remove', 'delete', 3, 2, 3, 1, NULL, 0);
+INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
+VALUES ('1622884609714831366', '1622884609714831362', 'wineboxstuffing_view', '查看', 'view', '/custom/wineboxstuffing/view', 'file-text', 4, 2, 2, 1, NULL, 0);

+ 10 - 0
src/main/java/sql/winecase.menu.mysql

@@ -0,0 +1,10 @@
+INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
+VALUES ('1622884607688982534', 1622794302386204674, 'winecase', '酒箱管理', 'menu', '/custom/winecase', NULL, 1, 1, 0, 1, NULL, 0);
+INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
+VALUES ('1622884607688982535', '1622884607688982534', 'winecase_add', '新增', 'add', '/custom/winecase/add', 'plus', 1, 2, 1, 1, NULL, 0);
+INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
+VALUES ('1622884607688982536', '1622884607688982534', 'winecase_edit', '修改', 'edit', '/custom/winecase/edit', 'form', 2, 2, 2, 1, NULL, 0);
+INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
+VALUES ('1622884607688982537', '1622884607688982534', 'winecase_delete', '删除', 'delete', '/api/custom/winecase/remove', 'delete', 3, 2, 3, 1, NULL, 0);
+INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
+VALUES ('1622884607688982538', '1622884607688982534', 'winecase_view', '查看', 'view', '/custom/winecase/view', 'file-text', 4, 2, 2, 1, NULL, 0);

+ 10 - 0
src/main/java/sql/winecasestuffing.menu.mysql

@@ -0,0 +1,10 @@
+INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
+VALUES ('1622884610792767495', 1622794302386204674, 'winecasestuffing', '酒箱填充物管理', 'menu', '/custom/winecasestuffing', NULL, 1, 1, 0, 1, NULL, 0);
+INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
+VALUES ('1622884610792767496', '1622884610792767495', 'winecasestuffing_add', '新增', 'add', '/custom/winecasestuffing/add', 'plus', 1, 2, 1, 1, NULL, 0);
+INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
+VALUES ('1622884610792767497', '1622884610792767495', 'winecasestuffing_edit', '修改', 'edit', '/custom/winecasestuffing/edit', 'form', 2, 2, 2, 1, NULL, 0);
+INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
+VALUES ('1622884610792767498', '1622884610792767495', 'winecasestuffing_delete', '删除', 'delete', '/api/custom/winecasestuffing/remove', 'delete', 3, 2, 3, 1, NULL, 0);
+INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
+VALUES ('1622884610792767499', '1622884610792767495', 'winecasestuffing_view', '查看', 'view', '/custom/winecasestuffing/view', 'file-text', 4, 2, 2, 1, NULL, 0);

+ 12 - 97
target/classes/META-INF/spring.factories

@@ -1,98 +1,13 @@
 org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
-  org.springblade.modules.resource.config.BladeSmsConfiguration,\
-  org.springblade.modules.platform.controller.UserCardInfoController,\
-  org.springblade.modules.system.service.impl.RegionServiceImpl,\
-  org.springblade.modules.platform.service.impl.VersionUpgradeServiceImpl,\
-  org.springblade.modules.system.service.impl.AuthClientServiceImpl,\
-  org.springblade.modules.platform.controller.UserScoresController,\
-  org.springblade.modules.platform.controller.UserBankCardsController,\
-  org.springblade.common.config.MyBatisMetaObjectHandler,\
-  org.springblade.modules.platform.service.impl.AdsServiceImpl,\
-  org.springblade.modules.platform.controller.AdsController,\
-  org.springblade.modules.system.service.impl.TopMenuSettingServiceImpl,\
-  org.springblade.common.config.BladePreviewConfiguration,\
-  org.springblade.modules.system.service.impl.TenantPackageServiceImpl,\
-  org.springblade.modules.develop.service.impl.DatasourceServiceImpl,\
-  org.springblade.modules.system.service.impl.UserServiceImpl,\
-  org.springblade.modules.auth.granter.RefreshTokenGranter,\
-  org.springblade.modules.resource.config.BladeOssConfiguration,\
-  org.springblade.modules.platform.service.impl.ExpressServiceImpl,\
-  org.springblade.modules.system.service.impl.MenuServiceImpl,\
-  org.springblade.Application,\
-  org.springblade.modules.resource.service.impl.OssServiceImpl,\
-  org.springblade.modules.platform.controller.BanksController,\
-  org.springblade.modules.system.service.impl.DeptServiceImpl,\
-  org.springblade.modules.resource.controller.OssController,\
-  org.springblade.modules.auth.granter.PhoneTokenGranter,\
-  org.springblade.modules.resource.controller.AttachController,\
-  org.springblade.modules.system.service.impl.RechargeRecordServiceImpl,\
-  org.springblade.modules.system.service.impl.LogServiceImpl,\
-  org.springblade.modules.platform.service.impl.UserLicenseServiceImpl,\
-  org.springblade.modules.system.service.impl.UserWeChatServiceImpl,\
-  org.springblade.modules.platform.controller.PaymentsController,\
-  org.springblade.common.utils.AliyunSmsUtil,\
-  org.springblade.modules.system.service.impl.UserDeptServiceImpl,\
-  org.springblade.modules.resource.controller.SmsController,\
-  org.springblade.modules.develop.service.impl.CodeServiceImpl,\
-  org.springblade.modules.system.service.impl.ApiScopeServiceImpl,\
-  org.springblade.modules.platform.controller.FreightController,\
-  org.springblade.modules.api.service.impl.ApiServiceImpl,\
-  org.springblade.modules.system.service.impl.RoleMenuServiceImpl,\
-  org.springblade.modules.system.service.impl.DictServiceImpl,\
-  org.springblade.modules.auth.granter.PasswordTokenGranter,\
-  org.springblade.modules.system.service.impl.TenantServiceImpl,\
-  org.springblade.modules.platform.service.impl.BanksServiceImpl,\
-  org.springblade.modules.platform.service.impl.UserBankCardsServiceImpl,\
-  org.springblade.modules.system.service.impl.DataScopeServiceImpl,\
-  org.springblade.modules.auth.endpoint.BladeTokenEndPoint,\
-  org.springblade.modules.platform.controller.UserRecomController,\
-  org.springblade.modules.api.controller.LoginController,\
-  org.springblade.common.utils.RedisTool,\
-  org.springblade.common.config.BladeLogConfiguration,\
-  org.springblade.modules.platform.service.impl.UserFeedbacksServiceImpl,\
-  org.springblade.modules.platform.service.impl.PaymentsServiceImpl,\
-  org.springblade.modules.system.service.impl.ParamServiceImpl,\
-  org.springblade.modules.resource.service.impl.AttachServiceImpl,\
-  org.springblade.modules.platform.controller.UserFeedbacksController,\
-  org.springblade.modules.platform.service.impl.UserAppServiceImpl,\
-  org.springblade.modules.platform.controller.UserAppController,\
-  org.springblade.modules.auth.granter.CaptchaTokenGranter,\
-  org.springblade.modules.platform.service.impl.UserAddressServiceImpl,\
-  org.springblade.modules.resource.endpoint.SmsEndpoint,\
-  org.springblade.modules.api.controller.FileController,\
-  org.springblade.modules.system.service.impl.TopMenuServiceImpl,\
-  org.springblade.modules.system.service.impl.UserOauthServiceImpl,\
-  org.springblade.modules.develop.controller.DatasourceController,\
-  org.springblade.common.config.SwaggerConfiguration,\
-  org.springblade.modules.auth.endpoint.BladeSocialEndpoint,\
-  org.springblade.modules.system.service.impl.UserSearchServiceImpl,\
-  org.springblade.modules.desk.service.impl.NoticeServiceImpl,\
-  org.springblade.modules.platform.service.impl.FreightServiceImpl,\
-  org.springblade.modules.system.service.impl.RoleServiceImpl,\
-  org.springblade.modules.system.service.impl.LogUsualServiceImpl,\
-  org.springblade.modules.platform.service.impl.UserScoresServiceImpl,\
-  org.springblade.modules.system.service.impl.LogErrorServiceImpl,\
-  org.springblade.modules.auth.granter.WeChatTokenGranter,\
-  org.springblade.modules.platform.service.impl.UserBrowseServiceImpl,\
-  org.springblade.modules.platform.controller.UserAddressController,\
-  org.springblade.modules.platform.controller.UserLicenseController,\
-  org.springblade.modules.platform.service.impl.UserRecomServiceImpl,\
-  org.springblade.modules.platform.controller.ExpressController,\
-  org.springblade.modules.api.controller.CommonController,\
-  org.springblade.modules.resource.service.impl.SmsServiceImpl,\
-  org.springblade.modules.desk.controller.NoticeController,\
-  org.springblade.common.aspect.IPLimitAspect,\
-  org.springblade.modules.platform.service.impl.UserCardInfoServiceImpl,\
-  org.springblade.common.config.BladeConfiguration,\
-  org.springblade.modules.system.service.impl.DictBizServiceImpl,\
-  org.springblade.modules.platform.service.impl.CreditRuleServiceImpl,\
-  org.springblade.modules.auth.granter.SocialTokenGranter,\
-  org.springblade.modules.resource.endpoint.OssEndpoint,\
-  org.springblade.modules.system.service.impl.PostServiceImpl,\
-  org.springblade.modules.platform.controller.VersionUpgradeController,\
-  org.springblade.modules.platform.controller.UserBrowseController,\
-  org.springblade.modules.system.service.impl.RoleScopeServiceImpl,\
-  org.springblade.modules.system.service.impl.LogApiServiceImpl,\
-  org.springblade.modules.desk.controller.DashBoardController,\
-  org.springblade.modules.develop.controller.CodeController,\
-  org.springblade.modules.platform.controller.CreditRuleController
+  org.springblade.modules.custom.service.impl.WineCaseStuffingServiceImpl,\
+  org.springblade.modules.custom.controller.WineCaseController,\
+  org.springblade.modules.custom.controller.WineCaseStuffingController,\
+  org.springblade.modules.custom.service.impl.BottleBodyServiceImpl,\
+  org.springblade.modules.custom.service.impl.WineCaseServiceImpl,\
+  org.springblade.modules.custom.controller.WineBoxStuffingController,\
+  org.springblade.modules.custom.controller.WineBoxController,\
+  org.springblade.modules.custom.service.impl.WineBoxStuffingServiceImpl,\
+  org.springblade.modules.custom.service.impl.WineBoxServiceImpl,\
+  org.springblade.modules.custom.controller.BottleLabelController,\
+  org.springblade.modules.custom.controller.BottleBodyController,\
+  org.springblade.modules.custom.service.impl.BottleLabelServiceImpl

+ 1 - 1
target/classes/application-dev.yml

@@ -12,7 +12,7 @@ spring:
     #  nodes: 127.0.0.1:7001,127.0.0.1:7002,127.0.0.1:7003
     #  commandTimeout: 5000
   datasource:
-    url: jdbc:mysql://rm-2vc42e8m1uecvg481uo.mysql.cn-chengdu.rds.aliyuncs.com:3306/blade-x?useSSL=false&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&transformedBitIsBoolean=true&serverTimezone=Asia/Shanghai&nullCatalogMeansCurrent=true&allowPublicKeyRetrieval=true
+    url: jdbc:mysql://rm-2vc42e8m1uecvg481uo.mysql.cn-chengdu.rds.aliyuncs.com:3306/custom_wine?useSSL=false&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&transformedBitIsBoolean=true&serverTimezone=Asia/Shanghai&nullCatalogMeansCurrent=true&allowPublicKeyRetrieval=true
     username: gzzhkj
     password: gzzhkj9988$
     # PostgreSQL

+ 1 - 1
target/classes/application.yml

@@ -1,6 +1,6 @@
 #服务器配置
 server:
-  port: 8800
+  port: 8801
   undertow:
     threads:
       # 设置IO线程数, 它主要执行非阻塞的任务,它们会负责多个连接, 默认设置每个CPU核心一个线程

BIN
target/classes/org/springblade/common/base/BaseEntity.class


BIN
target/classes/org/springblade/modules/develop/controller/CodeController.class


+ 1 - 1
target/classes/templates/controller.java.vm

@@ -161,7 +161,7 @@ public class $!{table.controllerName} {
 	@ApiOperationSupport(order = 7)
 	@ApiOperation(value = "逻辑删除", notes = "传入ids")
 	public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) {
-		return R.status($!{table.entityPath}Service.deleteLogic(Func.toLongList(ids)));
+		return R.status($!{table.entityPath}Service.removeByIds(Func.toLongList(ids)));
 	}
 
 	#else