浏览代码

调酒师

zhanghui 2 年之前
父节点
当前提交
c01208ca26
共有 24 个文件被更改,包括 900 次插入15 次删除
  1. 3 3
      src/main/java/org/springblade/common/config/MyBatisMetaObjectHandler.java
  2. 129 0
      src/main/java/org/springblade/modules/custom/controller/BartenderController.java
  3. 127 0
      src/main/java/org/springblade/modules/custom/controller/BartenderSkillController.java
  4. 34 0
      src/main/java/org/springblade/modules/custom/dto/BartenderDTO.java
  5. 34 0
      src/main/java/org/springblade/modules/custom/dto/BartenderSkillDTO.java
  6. 76 0
      src/main/java/org/springblade/modules/custom/entity/Bartender.java
  7. 52 0
      src/main/java/org/springblade/modules/custom/entity/BartenderSkill.java
  8. 42 0
      src/main/java/org/springblade/modules/custom/mapper/BartenderMapper.java
  9. 30 0
      src/main/java/org/springblade/modules/custom/mapper/BartenderMapper.xml
  10. 42 0
      src/main/java/org/springblade/modules/custom/mapper/BartenderSkillMapper.java
  11. 25 0
      src/main/java/org/springblade/modules/custom/mapper/BartenderSkillMapper.xml
  12. 41 0
      src/main/java/org/springblade/modules/custom/service/IBartenderService.java
  13. 41 0
      src/main/java/org/springblade/modules/custom/service/IBartenderSkillService.java
  14. 41 0
      src/main/java/org/springblade/modules/custom/service/impl/BartenderServiceImpl.java
  15. 41 0
      src/main/java/org/springblade/modules/custom/service/impl/BartenderSkillServiceImpl.java
  16. 36 0
      src/main/java/org/springblade/modules/custom/vo/BartenderSkillVO.java
  17. 36 0
      src/main/java/org/springblade/modules/custom/vo/BartenderVO.java
  18. 49 0
      src/main/java/org/springblade/modules/custom/wrapper/BartenderWrapper.java
  19. 10 0
      src/main/java/sql/bartender.menu.mysql
  20. 10 0
      src/main/java/sql/bartenderskill.menu.mysql
  21. 1 12
      target/classes/META-INF/spring.factories
  22. 二进制
      target/classes/org/springblade/common/config/MyBatisMetaObjectHandler.class
  23. 二进制
      target/classes/org/springblade/modules/develop/controller/CodeController.class
  24. 二进制
      target/classes/org/springblade/modules/system/service/impl/TopMenuServiceImpl.class

+ 3 - 3
src/main/java/org/springblade/common/config/MyBatisMetaObjectHandler.java

@@ -23,8 +23,8 @@ public class MyBatisMetaObjectHandler implements MetaObjectHandler {
         this.strictUpdateFill(metaObject, "updateTime",  Date.class, new Date());
 		Long userId = AuthUtil.getUserId();
 		if (userId!=null){
-			this.strictInsertFill(metaObject, "create_user_id", Long.class, userId);
-			this.strictUpdateFill(metaObject, "update_user_id",  Long.class, userId);
+			this.strictInsertFill(metaObject, "createUserId", Long.class, userId);
+			this.strictUpdateFill(metaObject, "updateUserId",  Long.class, userId);
 		}
 	}
 
@@ -34,7 +34,7 @@ public class MyBatisMetaObjectHandler implements MetaObjectHandler {
     	this.setFieldValByName("updateTime", new Date(), metaObject);
 		Long userId = AuthUtil.getUserId();
 		if (userId!=null){
-			this.setFieldValByName("update_user_id", userId, metaObject);
+			this.setFieldValByName("updateUserId", userId, metaObject);
 		}
     }
 }

+ 129 - 0
src/main/java/org/springblade/modules/custom/controller/BartenderController.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.Bartender;
+import org.springblade.modules.custom.vo.BartenderVO;
+import org.springblade.modules.custom.wrapper.BartenderWrapper;
+import org.springblade.modules.custom.service.IBartenderService;
+import org.springblade.core.boot.ctrl.BladeController;
+
+/**
+ * 调酒师表 控制器
+ *
+ * @author BladeX
+ * @since 2023-02-08
+ */
+@RestController
+@AllArgsConstructor
+@RequestMapping("custom/bartender")
+@Api(value = "调酒师表", tags = "调酒师表接口")
+public class BartenderController extends BladeController {
+
+	private final IBartenderService bartenderService;
+
+	/**
+	 * 详情
+	 */
+	@GetMapping("/detail")
+	@ApiOperationSupport(order = 1)
+	@ApiOperation(value = "详情", notes = "传入bartender")
+	public R<BartenderVO> detail(Bartender bartender) {
+		Bartender detail = bartenderService.getOne(Condition.getQueryWrapper(bartender));
+		return R.data(BartenderWrapper.build().entityVO(detail));
+	}
+
+	/**
+	 * 分页 调酒师表
+	 */
+	@GetMapping("/list")
+	@ApiOperationSupport(order = 2)
+	@ApiOperation(value = "分页", notes = "传入bartender")
+	public R<IPage<BartenderVO>> list(Bartender bartender, Query query) {
+		IPage<Bartender> pages = bartenderService.page(Condition.getPage(query), Condition.getQueryWrapper(bartender));
+		return R.data(BartenderWrapper.build().pageVO(pages));
+	}
+
+
+	/**
+	 * 自定义分页 调酒师表
+	 */
+	@GetMapping("/page")
+	@ApiOperationSupport(order = 3)
+	@ApiOperation(value = "分页", notes = "传入bartender")
+	public R<IPage<BartenderVO>> page(BartenderVO bartender, Query query) {
+		IPage<BartenderVO> pages = bartenderService.selectBartenderPage(Condition.getPage(query), bartender);
+		return R.data(pages);
+	}
+
+	/**
+	 * 新增 调酒师表
+	 */
+	@PostMapping("/save")
+	@ApiOperationSupport(order = 4)
+	@ApiOperation(value = "新增", notes = "传入bartender")
+	public R save(@Valid @RequestBody Bartender bartender) {
+		return R.status(bartenderService.save(bartender));
+	}
+
+	/**
+	 * 修改 调酒师表
+	 */
+	@PostMapping("/update")
+	@ApiOperationSupport(order = 5)
+	@ApiOperation(value = "修改", notes = "传入bartender")
+	public R update(@Valid @RequestBody Bartender bartender) {
+		return R.status(bartenderService.updateById(bartender));
+	}
+
+	/**
+	 * 新增或修改 调酒师表
+	 */
+	@PostMapping("/submit")
+	@ApiOperationSupport(order = 6)
+	@ApiOperation(value = "新增或修改", notes = "传入bartender")
+	public R submit(@Valid @RequestBody Bartender bartender) {
+		return R.status(bartenderService.saveOrUpdate(bartender));
+	}
+
+	
+	/**
+	 * 删除 调酒师表
+	 */
+	@PostMapping("/remove")
+	@ApiOperationSupport(order = 7)
+	@ApiOperation(value = "逻辑删除", notes = "传入ids")
+	public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) {
+		return R.status(bartenderService.removeByIds(Func.toLongList(ids)));
+	}
+
+	
+}

+ 127 - 0
src/main/java/org/springblade/modules/custom/controller/BartenderSkillController.java

@@ -0,0 +1,127 @@
+/*
+ *      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.BartenderSkill;
+import org.springblade.modules.custom.vo.BartenderSkillVO;
+import org.springblade.modules.custom.service.IBartenderSkillService;
+import org.springblade.core.boot.ctrl.BladeController;
+
+/**
+ * 调酒师表技能表 控制器
+ *
+ * @author BladeX
+ * @since 2023-02-08
+ */
+@RestController
+@AllArgsConstructor
+@RequestMapping("custom/bartenderskill")
+@Api(value = "调酒师表技能表", tags = "调酒师表技能表接口")
+public class BartenderSkillController extends BladeController {
+
+	private final IBartenderSkillService bartenderSkillService;
+
+	/**
+	 * 详情
+	 */
+	@GetMapping("/detail")
+	@ApiOperationSupport(order = 1)
+	@ApiOperation(value = "详情", notes = "传入bartenderSkill")
+	public R<BartenderSkill> detail(BartenderSkill bartenderSkill) {
+		BartenderSkill detail = bartenderSkillService.getOne(Condition.getQueryWrapper(bartenderSkill));
+		return R.data(detail);
+	}
+
+	/**
+	 * 分页 调酒师表技能表
+	 */
+	@GetMapping("/list")
+	@ApiOperationSupport(order = 2)
+	@ApiOperation(value = "分页", notes = "传入bartenderSkill")
+	public R<IPage<BartenderSkill>> list(BartenderSkill bartenderSkill, Query query) {
+		IPage<BartenderSkill> pages = bartenderSkillService.page(Condition.getPage(query), Condition.getQueryWrapper(bartenderSkill));
+		return R.data(pages);
+	}
+
+	/**
+	 * 自定义分页 调酒师表技能表
+	 */
+	@GetMapping("/page")
+	@ApiOperationSupport(order = 3)
+	@ApiOperation(value = "分页", notes = "传入bartenderSkill")
+	public R<IPage<BartenderSkillVO>> page(BartenderSkillVO bartenderSkill, Query query) {
+		IPage<BartenderSkillVO> pages = bartenderSkillService.selectBartenderSkillPage(Condition.getPage(query), bartenderSkill);
+		return R.data(pages);
+	}
+
+	/**
+	 * 新增 调酒师表技能表
+	 */
+	@PostMapping("/save")
+	@ApiOperationSupport(order = 4)
+	@ApiOperation(value = "新增", notes = "传入bartenderSkill")
+	public R save(@Valid @RequestBody BartenderSkill bartenderSkill) {
+		return R.status(bartenderSkillService.save(bartenderSkill));
+	}
+
+	/**
+	 * 修改 调酒师表技能表
+	 */
+	@PostMapping("/update")
+	@ApiOperationSupport(order = 5)
+	@ApiOperation(value = "修改", notes = "传入bartenderSkill")
+	public R update(@Valid @RequestBody BartenderSkill bartenderSkill) {
+		return R.status(bartenderSkillService.updateById(bartenderSkill));
+	}
+
+	/**
+	 * 新增或修改 调酒师表技能表
+	 */
+	@PostMapping("/submit")
+	@ApiOperationSupport(order = 6)
+	@ApiOperation(value = "新增或修改", notes = "传入bartenderSkill")
+	public R submit(@Valid @RequestBody BartenderSkill bartenderSkill) {
+		return R.status(bartenderSkillService.saveOrUpdate(bartenderSkill));
+	}
+
+	
+	/**
+	 * 删除 调酒师表技能表
+	 */
+	@PostMapping("/remove")
+	@ApiOperationSupport(order = 7)
+	@ApiOperation(value = "逻辑删除", notes = "传入ids")
+	public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) {
+		return R.status(bartenderSkillService.removeByIds(Func.toLongList(ids)));
+	}
+
+	
+}

+ 34 - 0
src/main/java/org/springblade/modules/custom/dto/BartenderDTO.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.Bartender;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+/**
+ * 调酒师表数据传输对象实体类
+ *
+ * @author BladeX
+ * @since 2023-02-08
+ */
+@Data
+@EqualsAndHashCode(callSuper = true)
+public class BartenderDTO extends Bartender {
+	private static final long serialVersionUID = 1L;
+
+}

+ 34 - 0
src/main/java/org/springblade/modules/custom/dto/BartenderSkillDTO.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.BartenderSkill;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+/**
+ * 调酒师表技能表数据传输对象实体类
+ *
+ * @author BladeX
+ * @since 2023-02-08
+ */
+@Data
+@EqualsAndHashCode(callSuper = true)
+public class BartenderSkillDTO extends BartenderSkill {
+	private static final long serialVersionUID = 1L;
+
+}

+ 76 - 0
src/main/java/org/springblade/modules/custom/entity/Bartender.java

@@ -0,0 +1,76 @@
+package org.springblade.modules.custom.entity;
+
+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-08
+ */
+@Data
+@TableName("biz_bartender")
+@EqualsAndHashCode(callSuper = true)
+@ApiModel(value = "Bartender对象", description = "调酒师表")
+public class Bartender extends BaseEntity<Bartender> {
+
+	private static final long serialVersionUID = 1L;
+
+	/**
+	* 标题
+	*/
+	@ApiModelProperty(value = "标题")
+	private String title;
+	/**
+	* 描述
+	*/
+	@ApiModelProperty(value = "描述")
+	private String introduction;
+	/**
+	* 图片
+	*/
+	@ApiModelProperty(value = "图片")
+	private String image;
+	/**
+	* 姓名
+	*/
+	@ApiModelProperty(value = "姓名")
+	private String name;
+	/**
+	* 性别
+	*/
+	@ApiModelProperty(value = "性别")
+	private Integer sex;
+	/**
+	* 电话
+	*/
+	@ApiModelProperty(value = "电话")
+	private String phone;
+	/**
+	* 地址
+	*/
+	@ApiModelProperty(value = "地址")
+	private String address;
+	/**
+	* 单位
+	*/
+	@ApiModelProperty(value = "单位")
+	private String unit;
+	/**
+	* 排序
+	*/
+	@ApiModelProperty(value = "排序")
+	private Integer sort;
+	/**
+	* 状态 0-禁用 1-启用
+	*/
+	@ApiModelProperty(value = "状态 0-禁用 1-启用")
+	private Integer status;
+
+
+}

+ 52 - 0
src/main/java/org/springblade/modules/custom/entity/BartenderSkill.java

@@ -0,0 +1,52 @@
+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-08
+ */
+@Data
+@TableName("biz_bartender_skill")
+@EqualsAndHashCode(callSuper = true)
+@ApiModel(value = "BartenderSkill对象", description = "调酒师表技能表")
+public class BartenderSkill extends BaseEntity<BartenderSkill> {
+
+	private static final long serialVersionUID = 1L;
+
+	/**
+	* 调酒师id
+	*/
+	@ApiModelProperty(value = "调酒师id")
+	private Long bartenderId;
+	/**
+	* 标题
+	*/
+	@ApiModelProperty(value = "标题")
+	private String title;
+	/**
+	* 描述
+	*/
+	@ApiModelProperty(value = "描述")
+	private String describe;
+	/**
+	* 价格
+	*/
+	@ApiModelProperty(value = "价格")
+	private BigDecimal price;
+	/**
+	* 排序
+	*/
+	@ApiModelProperty(value = "排序")
+	private Integer sort;
+
+
+}

+ 42 - 0
src/main/java/org/springblade/modules/custom/mapper/BartenderMapper.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.Bartender;
+import org.springblade.modules.custom.vo.BartenderVO;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import java.util.List;
+
+/**
+ * 调酒师表 Mapper 接口
+ *
+ * @author BladeX
+ * @since 2023-02-08
+ */
+public interface BartenderMapper extends BaseMapper<Bartender> {
+
+	/**
+	 * 自定义分页
+	 *
+	 * @param page
+	 * @param bartender
+	 * @return
+	 */
+	List<BartenderVO> selectBartenderPage(IPage page, BartenderVO bartender);
+
+}

+ 30 - 0
src/main/java/org/springblade/modules/custom/mapper/BartenderMapper.xml

@@ -0,0 +1,30 @@
+<?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.BartenderMapper">
+
+    <!-- 通用查询映射结果 -->
+    <resultMap id="bartenderResultMap" type="org.springblade.modules.custom.entity.Bartender">
+        <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="title" property="title"/>
+        <result column="describe" property="describe"/>
+        <result column="image" property="image"/>
+        <result column="name" property="name"/>
+        <result column="sex" property="sex"/>
+        <result column="phone" property="phone"/>
+        <result column="address" property="address"/>
+        <result column="unit" property="unit"/>
+        <result column="sort" property="sort"/>
+        <result column="status" property="status"/>
+    </resultMap>
+
+
+    <select id="selectBartenderPage" resultMap="bartenderResultMap">
+        select * from biz_bartender where is_deleted = 0
+    </select>
+
+</mapper>

+ 42 - 0
src/main/java/org/springblade/modules/custom/mapper/BartenderSkillMapper.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.BartenderSkill;
+import org.springblade.modules.custom.vo.BartenderSkillVO;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import java.util.List;
+
+/**
+ * 调酒师表技能表 Mapper 接口
+ *
+ * @author BladeX
+ * @since 2023-02-08
+ */
+public interface BartenderSkillMapper extends BaseMapper<BartenderSkill> {
+
+	/**
+	 * 自定义分页
+	 *
+	 * @param page
+	 * @param bartenderSkill
+	 * @return
+	 */
+	List<BartenderSkillVO> selectBartenderSkillPage(IPage page, BartenderSkillVO bartenderSkill);
+
+}

+ 25 - 0
src/main/java/org/springblade/modules/custom/mapper/BartenderSkillMapper.xml

@@ -0,0 +1,25 @@
+<?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.BartenderSkillMapper">
+
+    <!-- 通用查询映射结果 -->
+    <resultMap id="bartenderSkillResultMap" type="org.springblade.modules.custom.entity.BartenderSkill">
+        <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="bartender_id" property="bartenderId"/>
+        <result column="title" property="title"/>
+        <result column="describe" property="describe"/>
+        <result column="price" property="price"/>
+        <result column="sort" property="sort"/>
+    </resultMap>
+
+
+    <select id="selectBartenderSkillPage" resultMap="bartenderSkillResultMap">
+        select * from biz_bartender_skill where is_deleted = 0
+    </select>
+
+</mapper>

+ 41 - 0
src/main/java/org/springblade/modules/custom/service/IBartenderService.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.Bartender;
+import org.springblade.modules.custom.vo.BartenderVO;
+import com.baomidou.mybatisplus.extension.service.IService;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+
+/**
+ * 调酒师表 服务类
+ *
+ * @author BladeX
+ * @since 2023-02-08
+ */
+public interface IBartenderService extends IService<Bartender> {
+
+	/**
+	 * 自定义分页
+	 *
+	 * @param page
+	 * @param bartender
+	 * @return
+	 */
+	IPage<BartenderVO> selectBartenderPage(IPage<BartenderVO> page, BartenderVO bartender);
+
+}

+ 41 - 0
src/main/java/org/springblade/modules/custom/service/IBartenderSkillService.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.BartenderSkill;
+import org.springblade.modules.custom.vo.BartenderSkillVO;
+import com.baomidou.mybatisplus.extension.service.IService;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+
+/**
+ * 调酒师表技能表 服务类
+ *
+ * @author BladeX
+ * @since 2023-02-08
+ */
+public interface IBartenderSkillService extends IService<BartenderSkill> {
+
+	/**
+	 * 自定义分页
+	 *
+	 * @param page
+	 * @param bartenderSkill
+	 * @return
+	 */
+	IPage<BartenderSkillVO> selectBartenderSkillPage(IPage<BartenderSkillVO> page, BartenderSkillVO bartenderSkill);
+
+}

+ 41 - 0
src/main/java/org/springblade/modules/custom/service/impl/BartenderServiceImpl.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.Bartender;
+import org.springblade.modules.custom.vo.BartenderVO;
+import org.springblade.modules.custom.mapper.BartenderMapper;
+import org.springblade.modules.custom.service.IBartenderService;
+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-08
+ */
+@Service
+public class BartenderServiceImpl extends ServiceImpl<BartenderMapper, Bartender> implements IBartenderService {
+
+	@Override
+	public IPage<BartenderVO> selectBartenderPage(IPage<BartenderVO> page, BartenderVO bartender) {
+		return page.setRecords(baseMapper.selectBartenderPage(page, bartender));
+	}
+
+}

+ 41 - 0
src/main/java/org/springblade/modules/custom/service/impl/BartenderSkillServiceImpl.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.BartenderSkill;
+import org.springblade.modules.custom.vo.BartenderSkillVO;
+import org.springblade.modules.custom.mapper.BartenderSkillMapper;
+import org.springblade.modules.custom.service.IBartenderSkillService;
+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-08
+ */
+@Service
+public class BartenderSkillServiceImpl extends ServiceImpl<BartenderSkillMapper, BartenderSkill> implements IBartenderSkillService {
+
+	@Override
+	public IPage<BartenderSkillVO> selectBartenderSkillPage(IPage<BartenderSkillVO> page, BartenderSkillVO bartenderSkill) {
+		return page.setRecords(baseMapper.selectBartenderSkillPage(page, bartenderSkill));
+	}
+
+}

+ 36 - 0
src/main/java/org/springblade/modules/custom/vo/BartenderSkillVO.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.BartenderSkill;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import io.swagger.annotations.ApiModel;
+
+/**
+ * 调酒师表技能表视图实体类
+ *
+ * @author BladeX
+ * @since 2023-02-08
+ */
+@Data
+@EqualsAndHashCode(callSuper = true)
+@ApiModel(value = "BartenderSkillVO对象", description = "调酒师表技能表")
+public class BartenderSkillVO extends BartenderSkill {
+	private static final long serialVersionUID = 1L;
+
+}

+ 36 - 0
src/main/java/org/springblade/modules/custom/vo/BartenderVO.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.Bartender;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import io.swagger.annotations.ApiModel;
+
+/**
+ * 调酒师表视图实体类
+ *
+ * @author BladeX
+ * @since 2023-02-08
+ */
+@Data
+@EqualsAndHashCode(callSuper = true)
+@ApiModel(value = "BartenderVO对象", description = "调酒师表")
+public class BartenderVO extends Bartender {
+	private static final long serialVersionUID = 1L;
+
+}

+ 49 - 0
src/main/java/org/springblade/modules/custom/wrapper/BartenderWrapper.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.Bartender;
+import org.springblade.modules.custom.vo.BartenderVO;
+import java.util.Objects;
+
+/**
+ * 调酒师表包装类,返回视图层所需的字段
+ *
+ * @author BladeX
+ * @since 2023-02-08
+ */
+public class BartenderWrapper extends BaseEntityWrapper<Bartender, BartenderVO>  {
+
+	public static BartenderWrapper build() {
+		return new BartenderWrapper();
+ 	}
+
+	@Override
+	public BartenderVO entityVO(Bartender bartender) {
+		BartenderVO bartenderVO = Objects.requireNonNull(BeanUtil.copy(bartender, BartenderVO.class));
+
+		//User createUser = UserCache.getUser(bartender.getCreateUser());
+		//User updateUser = UserCache.getUser(bartender.getUpdateUser());
+		//bartenderVO.setCreateUserName(createUser.getName());
+		//bartenderVO.setUpdateUserName(updateUser.getName());
+
+		return bartenderVO;
+	}
+
+}

+ 10 - 0
src/main/java/sql/bartender.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 ('1623165279218012166', 1622794302386204674, 'bartender', '调酒师', 'menu', '/custom/bartender', 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 ('1623165279218012167', '1623165279218012166', 'bartender_add', '新增', 'add', '/custom/bartender/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 ('1623165279218012168', '1623165279218012166', 'bartender_edit', '修改', 'edit', '/custom/bartender/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 ('1623165279218012169', '1623165279218012166', 'bartender_delete', '删除', 'delete', '/api/custom/bartender/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 ('1623165279218012170', '1623165279218012166', 'bartender_view', '查看', 'view', '/custom/bartender/view', 'file-text', 4, 2, 2, 1, NULL, 0);

+ 10 - 0
src/main/java/sql/bartenderskill.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 ('1623165280862179334', 1622794302386204674, 'bartenderskill', '调酒师技能', 'menu', '/custom/bartenderskill', 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 ('1623165280862179335', '1622794302386204674', 'bartenderskill_add', '新增', 'add', '/custom/bartenderskill/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 ('1623165280862179336', '1622794302386204674', 'bartenderskill_edit', '修改', 'edit', '/custom/bartenderskill/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 ('1623165280862179337', '1622794302386204674', 'bartenderskill_delete', '删除', 'delete', '/api/custom/bartenderskill/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 ('1623165280862179338', '1622794302386204674', 'bartenderskill_view', '查看', 'view', '/custom/bartenderskill/view', 'file-text', 4, 2, 2, 1, NULL, 0);

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

@@ -1,13 +1,2 @@
 org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
-  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
+  org.springblade.common.config.MyBatisMetaObjectHandler

二进制
target/classes/org/springblade/common/config/MyBatisMetaObjectHandler.class


二进制
target/classes/org/springblade/modules/develop/controller/CodeController.class


二进制
target/classes/org/springblade/modules/system/service/impl/TopMenuServiceImpl.class