完善了写真预约模块

This commit is contained in:
chen-xin-zhi 2024-11-19 14:18:40 +08:00
parent a12f056d4d
commit 1c0d0bf8df
52 changed files with 2323 additions and 27 deletions

View File

@ -3,9 +3,11 @@ package com.cultural.heritage;
import org.mybatis.spring.annotation.MapperScan; import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication; import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.scheduling.annotation.EnableScheduling;
@SpringBootApplication @SpringBootApplication
@MapperScan("com.cultural.heritage.mapper") @MapperScan("com.cultural.heritage.mapper")
@EnableScheduling
public class HeritageApplication { public class HeritageApplication {
public static void main(String[] args) { public static void main(String[] args) {

View File

@ -0,0 +1,38 @@
package com.cultural.heritage.config;
import com.cultural.heritage.common.ErrorCode;
import com.cultural.heritage.constant.BookConstant;
import com.cultural.heritage.exception.ThrowUtils;
import com.cultural.heritage.model.entity.BookingDate;
import com.cultural.heritage.service.book.BookingDateService;
import jakarta.annotation.Resource;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import java.util.ArrayList;
import java.util.List;
@Configuration
public class BookingDateConfig {
@Resource
private BookingDateService bookingDateService;
@Bean
public Boolean initBookingDate() {
System.out.println("这是Config");
long count = bookingDateService.count();
List<BookingDate> bookingDateList = new ArrayList<>();
if (count == 0) {
for (int i = 0; i < 3; i ++ ) {
BookingDate bookingDateRent = bookingDateService.initBookingDate(BookConstant.RENT_CLOTHES, i);
BookingDate bookingDateOwn = bookingDateService.initBookingDate(BookConstant.OWN_CLOTHES, i);
bookingDateList.add(bookingDateRent);
bookingDateList.add(bookingDateOwn);
}
boolean result = bookingDateService.saveBatch(bookingDateList);
ThrowUtils.throwIf(!result, ErrorCode.OPERATION_ERROR);
}
return true;
}
}

View File

@ -0,0 +1,11 @@
package com.cultural.heritage.constant;
public interface BookConstant {
String RENT_CLOTHES = "整套约拍";
String OWN_CLOTHES = "自带服装";
}

View File

@ -0,0 +1,171 @@
package com.cultural.heritage.controller.book;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.cultural.heritage.annotation.AuthCheck;
import com.cultural.heritage.common.BaseResponse;
import com.cultural.heritage.common.ErrorCode;
import com.cultural.heritage.common.ResultUtils;
import com.cultural.heritage.constant.UserConstant;
import com.cultural.heritage.exception.BusinessException;
import com.cultural.heritage.exception.ThrowUtils;
import com.cultural.heritage.model.dto.advanceOrder.AdvanceOrderAddRequest;
import com.cultural.heritage.model.dto.advanceOrder.AdvanceOrderQueryRequest;
import com.cultural.heritage.model.dto.order.OrderUpdateRequest;
import com.cultural.heritage.model.dto.snapshot.ContactsSnapshot;
import com.cultural.heritage.model.entity.AdvanceOrder;
import com.cultural.heritage.model.entity.Contacts;
import com.cultural.heritage.model.entity.User;
import com.cultural.heritage.model.vo.advanceorder.AdvanceOrderVO;
import com.cultural.heritage.service.address.ContactsService;
import com.cultural.heritage.service.book.AdvanceOrderService;
import com.cultural.heritage.service.user.UserService;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
import jakarta.annotation.Resource;
import jakarta.servlet.http.HttpServletRequest;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.BeanUtils;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.util.List;
@RestController
@RequestMapping("/advanceOrder")
@Slf4j
@Tag(name = "写真预约订单管理模块")
public class AdvanceOrderController {
@Resource
private AdvanceOrderService advanceOrderService;
@Resource
private UserService userService;
@Resource
private ContactsService contactsService;
/**
* 小程序端用户创建写真预约订单
* @param addAdvanceOrderRequest 写真预约订单添加请求体
* @return 是否添加成功
*/
@PostMapping("/add")
@Operation(summary = "小程序端用户创建写真预约订单", description = "参数:写真预约订单添加请求体, 权限所有人方法名addAdvanceOrder")
public BaseResponse<Boolean> addAdvanceOrder(@RequestBody AdvanceOrderAddRequest addAdvanceOrderRequest, HttpServletRequest request) {
if (addAdvanceOrderRequest == null) {
throw new BusinessException(ErrorCode.PARAMS_ERROR);
}
// 获取用户id
User loginUser = userService.getLoginUser(request);
Long userId = loginUser.getId();
// 获取联系人信息
Long contactsId = addAdvanceOrderRequest.getContactsId();
Contacts contacts = contactsService.getById(contactsId);
ContactsSnapshot contactsSnapshot = new ContactsSnapshot();
BeanUtils.copyProperties(contacts, contactsSnapshot);
// 封装写真预约订单类
AdvanceOrder advanceOrder = new AdvanceOrder();
BeanUtils.copyProperties(addAdvanceOrderRequest, advanceOrder);
advanceOrder.setUserId(userId);
advanceOrder.setContactsSnapshot(contactsSnapshot);
// 校验
advanceOrderService.validAdvanceOrder(advanceOrder);
boolean result = advanceOrderService.save(advanceOrder);
ThrowUtils.throwIf(!result, ErrorCode.OPERATION_ERROR);
return ResultUtils.success(true);
}
/**
* Web端管理员查询写真预约订单
* @param advanceOrderQueryRequest 写真预约订单查询请求体
* @return 写真预约订单列表
*/
@PostMapping("/list")
@Operation(summary = "Web端管理员查询写真预约订单", description = "参数:写真预约订单查询请求体, 权限:管理员(admin, boss)方法名listAdvanceOrderByPage")
@AuthCheck(mustRole = UserConstant.ADMIN_ROLE)
public BaseResponse<Page<AdvanceOrderVO>> listAdvanceOrderByPage(@RequestBody AdvanceOrderQueryRequest advanceOrderQueryRequest) {
if (advanceOrderQueryRequest == null) {
throw new BusinessException(ErrorCode.PARAMS_ERROR);
}
long current = advanceOrderQueryRequest.getCurrent();
long pageSize = advanceOrderQueryRequest.getPageSize();
QueryWrapper<AdvanceOrder> queryWrapper = advanceOrderService.getQueryWrapper(advanceOrderQueryRequest);
Page<AdvanceOrder> page = advanceOrderService.page(new Page<>(current, pageSize), queryWrapper);
// 封装成写真预约订单VO
List<AdvanceOrder> records = page.getRecords();
List<AdvanceOrderVO> advanceOrderVOS = records.stream().map(advanceOrder -> {
AdvanceOrderVO advanceOrderVO = new AdvanceOrderVO();
BeanUtils.copyProperties(advanceOrder, advanceOrderVO);
return advanceOrderVO;
}).toList();
Page<AdvanceOrderVO> voPage = new Page<>();
voPage.setRecords(advanceOrderVOS);
voPage.setTotal(page.getTotal());
voPage.setPages(page.getSize());
voPage.setCurrent(page.getCurrent());
voPage.setSize(page.getSize());
return ResultUtils.success(voPage);
}
/**
* 小程序端用户查询写真预约订单
* @return 当前用户的订单列表
*/
@PostMapping("/list/my")
@Operation(summary = "小程序端用户查询写真预约订单", description = "参数:无, 权限所有人方法名listMyAdvanceOrder")
public BaseResponse<List<AdvanceOrderVO>> listMyAdvanceOrder(HttpServletRequest request) {
User loginUser = userService.getLoginUser(request);
Long userId = loginUser.getId();
QueryWrapper<AdvanceOrder> queryWrapper = new QueryWrapper<>();
queryWrapper.eq("userId", userId);
List<AdvanceOrder> advanceOrderList = advanceOrderService.list(queryWrapper);
// 封装成写真预约订单VO
List<AdvanceOrderVO> advanceOrderVOS = advanceOrderList.stream().map(advanceOrder -> {
AdvanceOrderVO advanceOrderVO = new AdvanceOrderVO();
BeanUtils.copyProperties(advanceOrder, advanceOrderVO);
return advanceOrderVO;
}).toList();
return ResultUtils.success(advanceOrderVOS);
}
/**
* Web端管理员更新订单状态
* @param orderUpdateRequest 订单状态更新请求体
* @return 是否更新成功
*/
@PostMapping("/update")
@Operation(summary = "Web端管理员更新订单状态", description = "参数:订单状态更新请求体,权限:管理员(admin, boss) 方法名updateAdvanceOrderStatus")
public BaseResponse<Boolean> updateAdvanceOrderStatus(@RequestBody OrderUpdateRequest orderUpdateRequest) {
if (orderUpdateRequest == null || orderUpdateRequest.getId() <= 0) {
throw new BusinessException(ErrorCode.PARAMS_ERROR);
}
Long id = orderUpdateRequest.getId();
String orderStatus = orderUpdateRequest.getOrderStatus();
UpdateWrapper<AdvanceOrder> updateWrapper = new UpdateWrapper<>();
updateWrapper.eq("id", id);
updateWrapper.set("orderStatus", orderStatus);
boolean result = advanceOrderService.update(updateWrapper);
ThrowUtils.throwIf(!result, ErrorCode.OPERATION_ERROR);
return ResultUtils.success(true);
}
}

View File

@ -0,0 +1,113 @@
package com.cultural.heritage.controller.book;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.cultural.heritage.annotation.AuthCheck;
import com.cultural.heritage.common.BaseResponse;
import com.cultural.heritage.common.ErrorCode;
import com.cultural.heritage.common.ResultUtils;
import com.cultural.heritage.constant.BookConstant;
import com.cultural.heritage.constant.UserConstant;
import com.cultural.heritage.exception.BusinessException;
import com.cultural.heritage.exception.ThrowUtils;
import com.cultural.heritage.model.dto.CommonStringRequest;
import com.cultural.heritage.model.dto.book.BookingDateUpdateRequest;
import com.cultural.heritage.model.entity.BookingDate;
import com.cultural.heritage.model.vo.book.BookingDateVO;
import com.cultural.heritage.service.book.BookingDateService;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
import jakarta.annotation.Resource;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.BeanUtils;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.web.bind.annotation.*;
import java.util.ArrayList;
import java.util.List;
@RestController
@RequestMapping("/book")
@Slf4j
@Tag(name = "预约日期管理模块")
public class BookingDateController {
@Resource
private BookingDateService bookingDateService;
/**
* 初始化未来一天的预约日期
*/
// @Scheduled(cron = "*/5 * * * * ?")
// 每天00:00-00:00调用
@Scheduled(cron = "0 0 0 * * ?")
@Transactional(rollbackFor = Exception.class)
@GetMapping("/init")
@Operation(summary = "初始化未来一天的预约日期", description = "参数权限自动调用方法名initCurrentBookingDate")
public void initCurrentBookingDate() {
// 初始化预约日期
List<BookingDate> bookingDateList = new ArrayList<>();
BookingDate bookingDateRent = bookingDateService.initBookingDate(BookConstant.RENT_CLOTHES, 3);
BookingDate bookingDateOwn = bookingDateService.initBookingDate(BookConstant.OWN_CLOTHES, 3);
bookingDateList.add(bookingDateRent);
bookingDateList.add(bookingDateOwn);
boolean result = bookingDateService.saveBatch(bookingDateList);
ThrowUtils.throwIf(!result, ErrorCode.OPERATION_ERROR);
}
/**
* 根据预约类别查询未来四天(包括今天)的预约日期
* @param commonStringRequest 预约类型
* @return 当前预约类型未来四天的预约日期列表
*/
@PostMapping("/list")
@Operation(summary = "根据预约类别查询未来四天(包括今天)的预约日期", description = "参数:预约类型, 权限所有人方法名listBookingDateByType")
public BaseResponse<List<BookingDateVO>> listBookingDateByType(@RequestBody CommonStringRequest commonStringRequest) {
if (commonStringRequest == null || StringUtils.isBlank(commonStringRequest.getType())) {
throw new BusinessException(ErrorCode.PARAMS_ERROR);
}
String type = commonStringRequest.getType();
QueryWrapper<BookingDate> queryWrapper = new QueryWrapper<>();
queryWrapper.eq("type", type);
List<BookingDate> bookingDateList = bookingDateService.list(queryWrapper);
// 封装预约日期VO
List<BookingDateVO> bookingDateVOS = bookingDateList.stream().map(bookingDate -> {
BookingDateVO bookingDateVO = new BookingDateVO();
BeanUtils.copyProperties(bookingDate, bookingDateVO);
return bookingDateVO;
}).toList();
return ResultUtils.success(bookingDateVOS);
}
/**
* 更新当天的预约情况
* @param bookingDateUpdateRequest 预约日期更新请求体
* @return 是否更新成功
*/
@PostMapping("/update")
@AuthCheck(mustRole = UserConstant.ADMIN_ROLE)
@Operation(summary = "更新当天的预约情况", description = "参数:预约日期更新请求体, 权限:管理员(admin, boss)方法名updateBookingDate")
public BaseResponse<Boolean> updateBookingDate(@RequestBody BookingDateUpdateRequest bookingDateUpdateRequest) {
if (bookingDateUpdateRequest == null || bookingDateUpdateRequest.getId() <= 0) {
throw new BusinessException(ErrorCode.PARAMS_ERROR);
}
BookingDate bookingDate = new BookingDate();
BeanUtils.copyProperties(bookingDateUpdateRequest, bookingDate);
boolean result = bookingDateService.updateById(bookingDate);
ThrowUtils.throwIf(!result, ErrorCode.OPERATION_ERROR);
return ResultUtils.success(true);
}
}

View File

@ -0,0 +1,120 @@
package com.cultural.heritage.controller.book;
import com.cultural.heritage.annotation.AuthCheck;
import com.cultural.heritage.common.BaseResponse;
import com.cultural.heritage.common.ErrorCode;
import com.cultural.heritage.common.ResultUtils;
import com.cultural.heritage.constant.UserConstant;
import com.cultural.heritage.exception.BusinessException;
import com.cultural.heritage.exception.ThrowUtils;
import com.cultural.heritage.model.dto.CommonRequest;
import com.cultural.heritage.model.dto.clothesgrade.ClothesGradeAddRequest;
import com.cultural.heritage.model.dto.clothesgrade.ClothesGradeUpdateRequest;
import com.cultural.heritage.model.entity.ClothesGrade;
import com.cultural.heritage.model.vo.clothesgrade.ClothesGradeVO;
import com.cultural.heritage.service.book.ClothesGradeService;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
import jakarta.annotation.Resource;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.BeanUtils;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.util.List;
@RestController
@RequestMapping("/clothesGrade")
@Slf4j
@Tag(name = "服装等级管理模块")
public class ClothesGradeController {
@Resource
private ClothesGradeService clothesGradeService;
/**
* 添加服装等级
* @param clothesGradeAddRequest 服装等级添加请求体
* @return 是否添加成功
*/
@PostMapping("/add")
@AuthCheck(mustRole = UserConstant.ADMIN_ROLE)
@Operation(summary = "Web端管理员添加服装等级", description = "参数:服装等级添加请求体,权限:管理员(admin, boss)方法名addClothesGrade")
public BaseResponse<Long> addClothesGrade(@RequestBody ClothesGradeAddRequest clothesGradeAddRequest) {
if (clothesGradeAddRequest == null) {
throw new BusinessException(ErrorCode.PARAMS_ERROR);
}
ClothesGrade clothesGrade = new ClothesGrade();
BeanUtils.copyProperties(clothesGradeAddRequest, clothesGrade);
clothesGradeService.validClothesGrade(clothesGrade, false);
boolean save = clothesGradeService.save(clothesGrade);
ThrowUtils.throwIf(!save, ErrorCode.OPERATION_ERROR);
return ResultUtils.success(clothesGrade.getId());
}
/**
* 更新服装等级
* @param clothesGradeUpdateRequest 服装等级更新请求体
* @return 是否更新成功
*/
@PostMapping("/update")
@AuthCheck(mustRole = UserConstant.ADMIN_ROLE)
@Operation(summary = "Web端管理员更新服装等级", description = "参数:服装等级更新请求体,权限:管理员(admin, boss)方法名updateClothesGrade")
public BaseResponse<Boolean> updateClothesGrade(@RequestBody ClothesGradeUpdateRequest clothesGradeUpdateRequest) {
if (clothesGradeUpdateRequest == null || clothesGradeUpdateRequest.getId() <= 0) {
throw new BusinessException(ErrorCode.PARAMS_ERROR);
}
ClothesGrade clothesGrade = new ClothesGrade();
BeanUtils.copyProperties(clothesGradeUpdateRequest, clothesGrade);
clothesGradeService.validClothesGrade(clothesGrade, true);
boolean result = clothesGradeService.updateById(clothesGrade);
ThrowUtils.throwIf(!result, ErrorCode.OPERATION_ERROR);
return ResultUtils.success(true);
}
/**
* 删除服装等级
* @param commonRequest 服装等级删除请求体
* @return 是否删除成功
*/
@PostMapping("/delete")
@AuthCheck(mustRole = UserConstant.ADMIN_ROLE)
@Operation(summary = "Web端管理员删除服装等级", description = "参数:服装等级删除请求体,权限:管理员(admin, boss)方法名deleteClothesGrade")
public BaseResponse<Boolean> deleteClothesGrade(@RequestBody CommonRequest commonRequest) {
if (commonRequest == null || commonRequest.getId() <= 0) {
throw new BusinessException(ErrorCode.PARAMS_ERROR);
}
Long id = commonRequest.getId();
// 删除等级服装之前先删除该等级服装下的所有商品
clothesGradeService.deleteCurrentAllClothes(id);
boolean result = clothesGradeService.removeById(id);
ThrowUtils.throwIf(!result, ErrorCode.OPERATION_ERROR);
return ResultUtils.success(true);
}
/**
* 查询所有服装等级
* @return 服装等级列表
*/
@PostMapping("/list")
@Operation(summary = "Web端和小程序端查询服装等级", description = "参数权限所有人方法名listClothesGrade")
public BaseResponse<List<ClothesGradeVO>> listClothesGrade() {
List<ClothesGrade> clothesGradeList = clothesGradeService.list();
List<ClothesGradeVO> clothesGradeVOS = clothesGradeList.stream().map(clothesGrade -> {
ClothesGradeVO clothesGradeVO = new ClothesGradeVO();
BeanUtils.copyProperties(clothesGrade, clothesGradeVO);
return clothesGradeVO;
}).toList();
return ResultUtils.success(clothesGradeVOS);
}
}

View File

@ -0,0 +1,197 @@
package com.cultural.heritage.controller.book;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.cultural.heritage.annotation.AuthCheck;
import com.cultural.heritage.common.BaseResponse;
import com.cultural.heritage.common.ErrorCode;
import com.cultural.heritage.common.ResultUtils;
import com.cultural.heritage.constant.UserConstant;
import com.cultural.heritage.exception.BusinessException;
import com.cultural.heritage.exception.ThrowUtils;
import com.cultural.heritage.model.dto.CommonRequest;
import com.cultural.heritage.model.dto.clothesinfo.ClothesInfoAddRequest;
import com.cultural.heritage.model.dto.clothesinfo.ClothesInfoQueryRequest;
import com.cultural.heritage.model.dto.clothesinfo.ClothesInfoUpdateRequest;
import com.cultural.heritage.model.entity.ClothesGrade;
import com.cultural.heritage.model.entity.ClothesInfo;
import com.cultural.heritage.model.vo.clothesinfo.ClothesInfoLabelVO;
import com.cultural.heritage.model.vo.clothesinfo.ClothesInfoVO;
import com.cultural.heritage.service.book.ClothesGradeService;
import com.cultural.heritage.service.book.ClothesInfoService;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
import jakarta.annotation.Resource;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.BeanUtils;
import org.springframework.web.bind.annotation.*;
import java.util.List;
@RestController
@RequestMapping("/clothesInfo")
@Slf4j
@Tag(name = "服装信息管理模块")
public class ClothesInfoController {
@Resource
private ClothesInfoService clothesInfoService;
@Resource
private ClothesGradeService clothesGradeService;
/**
* 添加服装
* @param clothesInfoAddRequest 服装添加请求体
* @return 服装的id
*/
@PostMapping("/add")
@AuthCheck(mustRole = UserConstant.ADMIN_ROLE)
@Operation(summary = "Web端管理员添加服装", description = "参数:服装添加请求体,权限:管理员(admin, boss)方法名addClothesInfo")
public BaseResponse<Long> addClothesInfo(@RequestBody ClothesInfoAddRequest clothesInfoAddRequest) {
if (clothesInfoAddRequest == null) {
throw new BusinessException(ErrorCode.PARAMS_ERROR);
}
ClothesInfo clothesInfo = new ClothesInfo();
BeanUtils.copyProperties(clothesInfoAddRequest, clothesInfo);
// 校验
clothesInfoService.validClothesInfo(clothesInfo, false);
boolean result = clothesInfoService.save(clothesInfo);
ThrowUtils.throwIf(!result, ErrorCode.OPERATION_ERROR);
return ResultUtils.success(clothesInfo.getId());
}
/**
* 更新服装
* @param clothesInfoUpdateRequest 服装更新请求体
* @return 是否更新成功
*/
@PostMapping("/update")
@AuthCheck(mustRole = UserConstant.ADMIN_ROLE)
@Operation(summary = "Web管理员更新服装", description = "参数:服装更新请求体,权限:管理员(admin, boss)方法名updateClothesInfo")
public BaseResponse<Boolean> updateClothesInfo(@RequestBody ClothesInfoUpdateRequest clothesInfoUpdateRequest) {
if (clothesInfoUpdateRequest == null || clothesInfoUpdateRequest.getId() <= 0) {
throw new BusinessException(ErrorCode.PARAMS_ERROR);
}
ClothesInfo clothesInfo = new ClothesInfo();
BeanUtils.copyProperties(clothesInfoUpdateRequest, clothesInfo);
// 校验
clothesInfoService.validClothesInfo(clothesInfo, true);
boolean result = clothesInfoService.updateById(clothesInfo);
ThrowUtils.throwIf(!result, ErrorCode.OPERATION_ERROR);
return ResultUtils.success(true);
}
/**
* 删除服装
* @param commonRequest 服装删除请求体
* @return 是否删除成功
*/
@PostMapping("/delete")
@AuthCheck(mustRole = UserConstant.ADMIN_ROLE)
@Operation(summary = "Web管理员删除服装", description = "参数:服装删除请求体,权限:管理员(admin, boss)方法名deleteClothesInfo")
public BaseResponse<Boolean> deleteClothesInfo(@RequestBody CommonRequest commonRequest) {
if (commonRequest == null || commonRequest.getId() <= 0) {
throw new BusinessException(ErrorCode.PARAMS_ERROR);
}
Long id = commonRequest.getId();
boolean result = clothesInfoService.removeById(id);
ThrowUtils.throwIf(!result, ErrorCode.OPERATION_ERROR);
return ResultUtils.success(true);
}
/**
* 分页查询服装列表
* @param clothesInfoQueryRequest 服装查询请求体
* @return 服装列表
*/
@PostMapping("/list/page")
@AuthCheck(mustRole = UserConstant.ADMIN_ROLE)
@Operation(summary = "Web管理员分页查询服装", description = "参数:服装删除请求体,权限:管理员(admin, boss)方法名deleteClothesInfo")
public BaseResponse<Page<ClothesInfoVO>> listClothesInfoByPage(@RequestBody ClothesInfoQueryRequest clothesInfoQueryRequest) {
if (clothesInfoQueryRequest == null) {
throw new BusinessException(ErrorCode.PARAMS_ERROR);
}
long current = clothesInfoQueryRequest.getCurrent();
long pageSize = clothesInfoQueryRequest.getPageSize();
QueryWrapper<ClothesInfo> queryWrapper = clothesInfoService.getQueryWrapper(clothesInfoQueryRequest);
Page<ClothesInfo> page = clothesInfoService.page(new Page<>(current, pageSize), queryWrapper);
// 封装服装类VO
List<ClothesInfo> records = page.getRecords();
List<ClothesInfoVO> clothesInfoVOS = records.stream().map(clothesInfo -> {
ClothesInfoVO clothesInfoVO = new ClothesInfoVO();
BeanUtils.copyProperties(clothesInfo, clothesInfoVO);
return clothesInfoVO;
}).toList();
Page<ClothesInfoVO> voPage = new Page<>();
voPage.setRecords(clothesInfoVOS);
voPage.setTotal(page.getTotal());
voPage.setCurrent(page.getCurrent());
voPage.setSize(page.getSize());
voPage.setPages(page.getPages());
return ResultUtils.success(voPage);
}
/**
* 小程序端用户根据服装等级id查询服装标签
* @param commonRequest 服装等级id
* @return 当前等级下的服装列表标签
*/
@PostMapping("/list/label")
@Operation(summary = "小程序端用户根据服装等级id查询服装标签", description = "参数服装等级id权限所有人方法名listClothesInfoLabel")
public BaseResponse<List<ClothesInfoLabelVO>> listClothesInfoLabel(@RequestBody CommonRequest commonRequest) {
if (commonRequest == null || commonRequest.getId() <= 0) {
throw new BusinessException(ErrorCode.PARAMS_ERROR);
}
Long id = commonRequest.getId();
ClothesGrade clothesGrade = clothesGradeService.getById(id);
String clothesType = clothesGrade.getClothesType();
QueryWrapper<ClothesInfo> queryWrapper = new QueryWrapper<>();
queryWrapper.eq("clothesType", clothesType);
List<ClothesInfo> clothesInfoList = clothesInfoService.list(queryWrapper);
List<ClothesInfoLabelVO> clothesInfoLabelVOS = clothesInfoList.stream().map(clothesInfo -> {
ClothesInfoLabelVO clothesInfoLabelVO = new ClothesInfoLabelVO();
BeanUtils.copyProperties(clothesInfo, clothesInfoLabelVO);
return clothesInfoLabelVO;
}).toList();
return ResultUtils.success(clothesInfoLabelVOS);
}
/**
* 小程序端用户根据服装等级id查询服装详情
* @param commonRequest 服装id
* @return 服装详情信息
*/
@PostMapping("/list/detail")
@Operation(summary = "小程序端用户根据服装等级id查询服装详情", description = "参数服装id权限所有人方法名getOneById")
public BaseResponse<ClothesInfoVO> getOneById(@RequestBody CommonRequest commonRequest) {
if (commonRequest == null || commonRequest.getId() <= 0) {
throw new BusinessException(ErrorCode.PARAMS_ERROR);
}
Long id = commonRequest.getId();
ClothesInfo clothesInfo = clothesInfoService.getById(id);
ThrowUtils.throwIf(clothesInfo == null, ErrorCode.NOT_FOUND_ERROR, "该服装已被删除");
ClothesInfoVO clothesInfoVO = new ClothesInfoVO();
BeanUtils.copyProperties(clothesInfo, clothesInfoVO);
return ResultUtils.success(clothesInfoVO);
}
}

View File

@ -92,8 +92,11 @@ public class CategoryController {
// 根据类别id获取商品删除的条件 // 根据类别id获取商品删除的条件
QueryWrapper<Good> queryWrapper = categoryService.getDeleteQueryWrapper(id); QueryWrapper<Good> queryWrapper = categoryService.getDeleteQueryWrapper(id);
List<Good> goodList = goodService.list(queryWrapper); List<Good> goodList = goodService.list(queryWrapper);
// 如果该类别下有商品就删除
if (!CollectionUtils.isEmpty(goodList)) {
boolean isSuccess = goodService.removeBatchByIds(goodList); boolean isSuccess = goodService.removeBatchByIds(goodList);
ThrowUtils.throwIf(!isSuccess, ErrorCode.OPERATION_ERROR); ThrowUtils.throwIf(!isSuccess, ErrorCode.OPERATION_ERROR);
}
// 删除当前类别 // 删除当前类别
boolean result = categoryService.removeById(id); boolean result = categoryService.removeById(id);
ThrowUtils.throwIf(!result, ErrorCode.OPERATION_ERROR); ThrowUtils.throwIf(!result, ErrorCode.OPERATION_ERROR);
@ -106,7 +109,7 @@ public class CategoryController {
* @param commonDelBatchRequest 类别删除请求体 * @param commonDelBatchRequest 类别删除请求体
* @return 是否删除成功 * @return 是否删除成功
*/ */
@PostMapping("/delBath") @PostMapping("/delBatch")
@Operation(summary = "Web端管理员批量删除商品类别", description = "参数:类别删除请求体,权限:管理员(admin, boss)方法名deleteCategory") @Operation(summary = "Web端管理员批量删除商品类别", description = "参数:类别删除请求体,权限:管理员(admin, boss)方法名deleteCategory")
@AuthCheck(mustRole = UserConstant.ADMIN_ROLE) @AuthCheck(mustRole = UserConstant.ADMIN_ROLE)
public BaseResponse<Boolean> delBatchCategory(@RequestBody CommonDelBatchRequest commonDelBatchRequest) { public BaseResponse<Boolean> delBatchCategory(@RequestBody CommonDelBatchRequest commonDelBatchRequest) {
@ -119,8 +122,11 @@ public class CategoryController {
// 根据类别id获取商品删除的条件 // 根据类别id获取商品删除的条件
QueryWrapper<Good> queryWrapper = categoryService.getDeleteQueryWrapper(id); QueryWrapper<Good> queryWrapper = categoryService.getDeleteQueryWrapper(id);
List<Good> goodList = goodService.list(queryWrapper); List<Good> goodList = goodService.list(queryWrapper);
// 如果该类别下有商品就删除
if (!CollectionUtils.isEmpty(goodList)) {
boolean isSuccess = goodService.removeBatchByIds(goodList); boolean isSuccess = goodService.removeBatchByIds(goodList);
ThrowUtils.throwIf(!isSuccess, ErrorCode.OPERATION_ERROR); ThrowUtils.throwIf(!isSuccess, ErrorCode.OPERATION_ERROR);
}
// 删除当前类别 // 删除当前类别
boolean result = categoryService.removeById(id); boolean result = categoryService.removeById(id);
ThrowUtils.throwIf(!result, ErrorCode.OPERATION_ERROR); ThrowUtils.throwIf(!result, ErrorCode.OPERATION_ERROR);
@ -194,7 +200,4 @@ public class CategoryController {
} }

View File

@ -165,7 +165,7 @@ public class OrderController {
/** /**
* 更新用户订单状态 * Web端管理员更新订单状态
* @param orderUpdateRequest 订单状态更新请求体 * @param orderUpdateRequest 订单状态更新请求体
* @return 是否更新成功 * @return 是否更新成功
*/ */

View File

@ -0,0 +1,7 @@
package com.cultural.heritage.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.cultural.heritage.model.entity.AdvanceOrder;
public interface AdvanceOrderMapper extends BaseMapper<AdvanceOrder> {
}

View File

@ -0,0 +1,7 @@
package com.cultural.heritage.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.cultural.heritage.model.entity.BookingDate;
public interface BookingDateMapper extends BaseMapper<BookingDate> {
}

View File

@ -0,0 +1,7 @@
package com.cultural.heritage.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.cultural.heritage.model.entity.ClothesGrade;
public interface ClothesGradeMapper extends BaseMapper<ClothesGrade> {
}

View File

@ -0,0 +1,7 @@
package com.cultural.heritage.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.cultural.heritage.model.entity.ClothesInfo;
public interface ClothesInfoMapper extends BaseMapper<ClothesInfo> {
}

View File

@ -0,0 +1,23 @@
package com.cultural.heritage.model.dto;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.io.Serial;
import java.io.Serializable;
@Data
@Schema(description = "根据预约类型查询", requiredProperties = {"type"})
public class CommonStringRequest implements Serializable {
/**
* 预约类型
*/
@Schema(description = "预约类型", example = "整套约拍")
private String type;
@Serial
private static final long serialVersionUID = 1L;
}

View File

@ -0,0 +1,88 @@
package com.cultural.heritage.model.dto.advanceOrder;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.io.Serial;
import java.io.Serializable;
@Data
@Schema(description = "预约订单添加请求体", requiredProperties = {"type", "clothesType", "deposit", "contactsSnapshot",
"specificDate", "timeSlot", "isIndoors", "isMakeup", "isPhotography"})
public class AdvanceOrderAddRequest implements Serializable {
/**
* 预约类别
*/
@Schema(description = "预约类别", example = "整套约拍")
private String type;
/**
* 服装类别名称
*/
@Schema(description = "服装类别名称", example = "时尚精选")
private String clothesType;
/**
* 定金
*/
@Schema(description = "定金", example = "100.00")
private Double deposit;
/**
* 联系人id
*/
@Schema(description = "联系人id(id > 0)", example = "3")
private Long contactsId;
/**
* 预约具体日期
*/
@Schema(description = "预约具体日期", example = "2024-11-18")
private String specificDate;
/**
* 预约时间段
*/
@Schema(description = "预约时间段", example = "8:00-10:00")
private String timeSlot;
/**
* 是否是室内
*/
@Schema(description = "是否是室内", example = "1")
private Integer isIndoors;
/**
* 是否选择妆发服务
*/
@Schema(description = "是否选择妆发服务", example = "1")
private Integer isMakeup;
/**
* 是否选择摄影服务
*/
@Schema(description = "是否选择摄影服务", example = "1")
private Integer isPhotography;
/**
* 订单状态
*/
@Schema(description = "订单状态", example = "待付款")
private String orderStatus;
@Serial
private static final long serialVersionUID = 1L;
}

View File

@ -0,0 +1,84 @@
package com.cultural.heritage.model.dto.advanceOrder;
import com.cultural.heritage.common.PageRequest;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import java.io.Serial;
import java.io.Serializable;
@Data
@EqualsAndHashCode(callSuper = true)
@Schema(description = "预约订单查询请求体", requiredProperties = {"id", "type", "minDeposit", "maxDeposit", "startTime", "endTime", "orderStatus"})
public class AdvanceOrderQueryRequest extends PageRequest implements Serializable {
/**
* 写真预约订单id
*/
@Schema(description = "写真预约订单id", example = "2")
private Long id;
/**
* 预约类别
*/
@Schema(description = "预约类别", example = "整套约拍")
private String type;
/**
* 最小定金
*/
@Schema(description = "最小定金", example = "80")
private Double minDeposit;
/**
* 最大定金
*/
@Schema(description = "最大定金", example = "200")
private Double maxDeposit;
/**
* 预约日期左区间
*/
@Schema(description = "预约日期左区间", example = "2024-11-10")
private String startTime;
/**
* 预约日期右区间
*/
@Schema(description = "预约日期右区间", example = "2024-11-18")
private String endTime;
/**
* 订单状态
*/
@Schema(description = "订单状态", example = "待消费")
private String orderStatus;
/**
* 订单创建时间左区间
*/
@Schema(description = "订单创建时间左区间", example = "2024-11-19 15:00:00")
private String createLeftTime;
/**
* 订单创建时间右区间
*/
@Schema(description = "订单创建时间右区间", example = "2024-11-20 13:00:00")
private String createRightTime;
@Serial
private static final long serialVersionUID = 1L;
}

View File

@ -0,0 +1,50 @@
package com.cultural.heritage.model.dto.book;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.io.Serial;
import java.io.Serializable;
@Data
@Schema(description = "预约日期添加请求体", requiredProperties = {"specificDate", "timeSlot", "isAvailable", "maxNumber", "type"})
public class BookingDateAddRequest implements Serializable {
/**
* 预约具体日期
*/
@Schema(description = "预约具体日期", example = "2024-11-18")
private String specificDate;
/**
* 时间段
*/
@Schema(description = "时间段", example = "8:00-10:00;12:00-14:00")
private String timeSlot;
/**
* 是否可预约
*/
@Schema(description = "是否可预约", example = "1")
private Integer isAvailable;
/**
* 各个时间段的最大预约人数(4,6..)
*/
@Schema(description = "各个时间段的最大预约人数(4,6..)", example = "4,5,6")
private String maxNumber;
/**
* 预约类别
*/
@Schema(description = "预约类别", example = "整套约拍")
private String type;
@Serial
private static final long serialVersionUID = 1L;
}

View File

@ -0,0 +1,58 @@
package com.cultural.heritage.model.dto.book;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.io.Serial;
import java.io.Serializable;
@Data
@Schema(description = "预约日期更新请求体", requiredProperties = {"id", "specificDate", "timeSlot", "isAvailable", "maxNumber","type"})
public class BookingDateUpdateRequest implements Serializable {
/**
* 预约日期id
*/
@Schema(description = "预约日期id", example = "1")
private Long id;
/**
* 预约具体日期
*/
@Schema(description = "预约具体日期", example = "2024-11-18")
private String specificDate;
/**
* 时间段
*/
@Schema(description = "时间段", example = "8:00-10:00;12:00-14:00")
private String timeSlot;
/**
* 是否可预约
*/
@Schema(description = "是否可预约", example = "1")
private Integer isAvailable;
/**
* 各个时间段的最大预约人数(4,6..)
*/
@Schema(description = "各个时间段的最大预约人数(4,6..)", example = "4,5,6")
private String maxNumber;
/**
* 预约类别
*/
@Schema(description = "预约类别", example = "整套约拍")
private String type;
@Serial
private static final long serialVersionUID = 1L;
}

View File

@ -0,0 +1,50 @@
package com.cultural.heritage.model.dto.clothesgrade;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.io.Serial;
import java.io.Serializable;
@Data
@Schema(description = "服装等级添加请求体", requiredProperties = {"clothesType", "image", "minPrice", "maxPrice", "brief"})
public class ClothesGradeAddRequest implements Serializable {
/**
* 类别名称
*/
@Schema(description = "类别名称", example = "简约风尚")
private String clothesType;
/**
* 商品图片
*/
@Schema(description = "商品图片", example = "http://xxx.png")
private String image;
/**
* 最低价格
*/
@Schema(description = "最低价格", example = "80.00")
private Double minPrice;
/**
* 最高价格
*/
@Schema(description = "最高价格", example = "160")
private Double maxPrice;
/**
* 服装价位简介
*/
@Schema(description = "服装价位简介", example = "传承非遗之美,简约演绎经典")
private String brief;
@Serial
private static final long serialVersionUID = 1L;
}

View File

@ -0,0 +1,58 @@
package com.cultural.heritage.model.dto.clothesgrade;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.io.Serial;
import java.io.Serializable;
@Data
@Schema(description = "服装等级更新请求体")
public class ClothesGradeUpdateRequest implements Serializable {
/**
* 服装等级id
*/
@Schema(description = "服装等级id", example = "2")
private Long id;
/**
* 类别名称
*/
@Schema(description = "类别名称", example = "简约风尚")
private String clothesType;
/**
* 商品图片
*/
@Schema(description = "商品图片", example = "http://xxx.png")
private String image;
/**
* 最低价格
*/
@Schema(description = "最低价格", example = "80.00")
private Double minPrice;
/**
* 最高价格
*/
@Schema(description = "最高价格", example = "160")
private Double maxPrice;
/**
* 服装价位简介
*/
@Schema(description = "服装价位简介", example = "传承非遗之美,简约演绎经典")
private String brief;
@Serial
private static final long serialVersionUID = 1L;
}

View File

@ -0,0 +1,61 @@
package com.cultural.heritage.model.dto.clothesinfo;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.io.Serial;
import java.io.Serializable;
@Data
@Schema(description = "服装添加请求体", requiredProperties = {"name", "image", "effectImg", "intro", "price", "clothesType"})
public class ClothesInfoAddRequest implements Serializable {
/**
* 服装名称
*/
@Schema(description = "服装名称", example = "彩绣菊花纹刺绣长袍")
private String name;
/**
* 服装图片
*/
@Schema(description = "服装图片", example = "https://www.xxx.jpg")
private String image;
/**
* 服装效果图
*/
@Schema(description = "服装效果图", example = "https://www.xxx.jpg;https://www.xxx.png")
private String effectImg;
/**
* 服装简介
*/
@Schema(description = "服装简介", example = "用上等丝绸,质地细腻、柔软且富有光泽,触感极佳。统手工刺绣技艺,每一针每一线都凝聚着匠人的心血与智慧,")
private String intro;
/**
* 服装价格
*/
@Schema(description = "服装价格", example = "100.00")
private Double price;
/**
* 所属服装等级
*/
@Schema(description = "所属服装等级", example = "简约风尚")
private String clothesType;
@Serial
private static final long serialVersionUID = 1L;
}

View File

@ -0,0 +1,55 @@
package com.cultural.heritage.model.dto.clothesinfo;
import com.cultural.heritage.common.PageRequest;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import java.io.Serial;
import java.io.Serializable;
@Data
@EqualsAndHashCode(callSuper = true)
@Schema(description = "服装查询请求体", requiredProperties = {"current", "pageSize", "sortField"})
public class ClothesInfoQueryRequest extends PageRequest implements Serializable {
/**
* 服装id
*/
@Schema(description = "服装id", example = "2")
private Long id;
/**
* 服装名称
*/
@Schema(description = "服装名称", example = "彩绣菊花纹刺绣长袍")
private String name;
/**
* 最低价格
*/
@Schema(description = "最低价格", example = "100.00")
private Double minPrice;
/**
* 最高价格
*/
@Schema(description = "最高价格", example = "200.00")
private Double maxPrice;
/**
* 所属服装等级
*/
@Schema(description = "所属服装等级", example = "简约风尚")
private String clothesType;
@Serial
private static final long serialVersionUID = 1L;
}

View File

@ -0,0 +1,66 @@
package com.cultural.heritage.model.dto.clothesinfo;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.io.Serial;
import java.io.Serializable;
@Data
@Schema(description = "服装添加请求体", requiredProperties = {"id", "name", "image", "effectImg", "intro", "price", "clothesType"})
public class ClothesInfoUpdateRequest implements Serializable {
/**
* 服装id
*/
@Schema(description = "服装id", example = "1")
private Long id;
/**
* 服装名称
*/
@Schema(description = "服装名称", example = "彩绣菊花纹刺绣长袍")
private String name;
/**
* 服装图片
*/
@Schema(description = "服装图片", example = "https://www.xxx.jpg")
private String image;
/**
* 服装效果图
*/
@Schema(description = "服装效果图", example = "https://www.xxx.jpg;https://www.xxx.png")
private String effectImg;
/**
* 服装简介
*/
@Schema(description = "服装简介", example = "用上等丝绸,质地细腻、柔软且富有光泽,触感极佳。统手工刺绣技艺,每一针每一线都凝聚着匠人的心血与智慧,")
private String intro;
/**
* 服装价格
*/
@Schema(description = "服装价格", example = "100.00")
private Double price;
/**
* 所属服装等级
*/
@Schema(description = "所属服装等级", example = "简约风尚")
private String clothesType;
@Serial
private static final long serialVersionUID = 1L;
}

View File

@ -72,6 +72,7 @@ public class GoodAddRequest implements Serializable {
@Schema(description = "节日序号(1代表端午节2代表中秋节...)", example = "2") @Schema(description = "节日序号(1代表端午节2代表中秋节...)", example = "2")
private Integer festivalOrder; private Integer festivalOrder;
@TableField(exist = false) @TableField(exist = false)
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
} }

View File

@ -22,13 +22,6 @@ public class OrderAddRequest implements Serializable {
@Schema(description = "订单类别", example = "product") @Schema(description = "订单类别", example = "product")
private String orderType; private String orderType;
//
// /**
// * 用户id
// */
// @Schema(description = "用户id(id > 0)", example = "2")
// private Long userId;
/** /**
* 用户昵称 * 用户昵称

View File

@ -0,0 +1,115 @@
package com.cultural.heritage.model.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler;
import com.cultural.heritage.model.dto.snapshot.ContactsSnapshot;
import lombok.Data;
import java.io.Serial;
import java.io.Serializable;
import java.util.Date;
/**
* 预约类订单表
* @TableName advance_order
*/
@Data
@TableName(value = "advance_order", autoResultMap = true)
public class AdvanceOrder implements Serializable {
/**
* 写真预约订单id
*/
@TableId(type = IdType.AUTO)
private Long id;
/**
* 预约类别
*/
private String type;
/**
* 服装类别名称
*/
private String clothesType;
/**
* 定金
*/
private Double deposit;
/**
* 联系人信息快照
*/
@TableField(typeHandler = JacksonTypeHandler.class)
private ContactsSnapshot contactsSnapshot;
/**
* 预约具体日期
*/
private String specificDate;
/**
* 预约时间段
*/
private String timeSlot;
/**
* 是否是室内
*/
private Integer isIndoors;
/**
* 是否选择妆发服务
*/
private Integer isMakeup;
/**
* 是否选择摄影服务
*/
private Integer isPhotography;
/**
* 用户id
*/
private Long userId;
/**
* 订单状态
*/
private String orderStatus;
/**
* 创建时间
*/
private Date createTime;
/**
* 更新时间
*/
private Date updateTime;
/**
* 是否删除
*/
private Integer isDelete;
@Serial
private static final long serialVersionUID = 1L;
}

View File

@ -0,0 +1,77 @@
package com.cultural.heritage.model.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.io.Serial;
import java.io.Serializable;
import java.util.Date;
/**
* 预约日期表
* @TableName booking_date
*/
@Data
@TableName("booking_date")
public class BookingDate implements Serializable {
/**
* 预约日期表
*/
@TableId(type = IdType.AUTO)
private Long id;
/**
* 预约具体日期
*/
private String specificDate;
/**
* 时间段
*/
private String timeSlot;
/**
* 是否可预约
*/
private Integer isAvailable;
/**
* 各个时间段的最大预约人数(4,6..)
*/
private String maxNumber;
/**
* 预约类别
*/
private String type;
/**
* 创建时间
*/
private Date createTime;
/**
* 更新时间
*/
private Date updateTime;
/**
* 是否删除
*/
private Integer isDelete;
@Serial
private static final long serialVersionUID = 1L;
}

View File

@ -0,0 +1,77 @@
package com.cultural.heritage.model.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.io.Serial;
import java.io.Serializable;
import java.util.Date;
/**
* 服装等级
* @TableName clothes_grade
*/
@Data
@TableName("clothes_grade")
public class ClothesGrade implements Serializable {
/**
* 服装等级id
*/
@TableId(type = IdType.AUTO)
private Long id;
/**
* 类别名称
*/
private String clothesType;
/**
* 商品图片
*/
private String image;
/**
* 最低价格
*/
private Double minPrice;
/**
* 最高价格
*/
private Double maxPrice;
/**
* 服装价位简介
*/
private String brief;
/**
* 创建时间
*/
private Date createTime;
/**
* 更新时间
*/
private Date updateTime;
/**
* 是否删除
*/
private Integer isDelete;
@Serial
private static final long serialVersionUID = 1L;
}

View File

@ -0,0 +1,83 @@
package com.cultural.heritage.model.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.io.Serial;
import java.io.Serializable;
import java.util.Date;
/**
* 服装信息表
* @TableName clothes_info
*/
@Data
@TableName("clothes_info")
public class ClothesInfo implements Serializable {
/**
* 服装id
*/
@TableId(type = IdType.AUTO)
private Long id;
/**
* 服装名称
*/
private String name;
/**
* 服装图片
*/
private String image;
/**
* 服装效果图
*/
private String effectImg;
/**
* 服装简介
*/
private String intro;
/**
* 服装价格
*/
private Double price;
/**
* 所属服装等级
*/
private String clothesType;
/**
* 创建时间
*/
private Date createTime;
/**
* 更新时间
*/
private Date updateTime;
/**
* 是否删除
*/
private Integer isDelete;
@Serial
private static final long serialVersionUID = 1L;
}

View File

@ -17,6 +17,9 @@ import java.util.Date;
*/ */
@TableName(value = "user") @TableName(value = "user")
@Data @Data
//@Builder
//@AllArgsConstructor
//@NoArgsConstructor
public class User implements Serializable { public class User implements Serializable {
/** /**
* 用户编号 * 用户编号

View File

@ -0,0 +1,97 @@
package com.cultural.heritage.model.vo.advanceorder;
import com.cultural.heritage.model.dto.snapshot.ContactsSnapshot;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import java.io.Serial;
import java.io.Serializable;
import java.util.Date;
@Data
public class AdvanceOrderVO implements Serializable {
/**
* 写真预约订单id
*/
private Long id;
/**
* 预约类别
*/
private String type;
/**
* 服装类别名称
*/
private String clothesType;
/**
* 定金
*/
private Double deposit;
/**
* 联系人信息快照
*/
private ContactsSnapshot contactsSnapshot;
/**
* 预约具体日期
*/
private String specificDate;
/**
* 预约时间段
*/
private String timeSlot;
/**
* 是否是室内
*/
private Integer isIndoors;
/**
* 是否选择妆发服务
*/
private Integer isMakeup;
/**
* 是否选择摄影服务
*/
private Integer isPhotography;
/**
* 用户id
*/
private Long userId;
/**
* 订单状态
*/
private String orderStatus;
/**
* 创建时间
*/
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date createTime;
@Serial
private static final long serialVersionUID = 1L;
}

View File

@ -0,0 +1,52 @@
package com.cultural.heritage.model.vo.book;
import lombok.Data;
import java.io.Serial;
import java.io.Serializable;
@Data
public class BookingDateVO implements Serializable {
/**
* 预约日期表
*/
private Long id;
/**
* 预约具体日期
*/
private String specificDate;
/**
* 时间段
*/
private String timeSlot;
/**
* 是否可预约
*/
private Integer isAvailable;
/**
* 各个时间段的最大预约人数(4,6..)
*/
private String maxNumber;
/**
* 预约类别
*/
private String type;
@Serial
private static final long serialVersionUID = 1L;
}

View File

@ -0,0 +1,51 @@
package com.cultural.heritage.model.vo.clothesgrade;
import lombok.Data;
import java.io.Serial;
import java.io.Serializable;
@Data
public class ClothesGradeVO implements Serializable {
/**
* 服装等级id
*/
private Long id;
/**
* 类别名称
*/
private String clothesType;
/**
* 商品图片
*/
private String image;
/**
* 最低价格
*/
private Double minPrice;
/**
* 最高价格
*/
private Double maxPrice;
/**
* 服装价位简介
*/
private String brief;
@Serial
private static final long serialVersionUID = 1L;
}

View File

@ -0,0 +1,44 @@
package com.cultural.heritage.model.vo.clothesinfo;
import lombok.Data;
import java.io.Serial;
import java.io.Serializable;
@Data
public class ClothesInfoLabelVO implements Serializable {
/**
* 服装id
*/
private Long id;
/**
* 服装名称
*/
private String name;
/**
* 服装图片
*/
private String image;
/**
* 服装简介
*/
private String intro;
/**
* 服装价格
*/
private Double price;
@Serial
private static final long serialVersionUID = 1L;
}

View File

@ -0,0 +1,56 @@
package com.cultural.heritage.model.vo.clothesinfo;
import lombok.Data;
import java.io.Serial;
import java.io.Serializable;
@Data
public class ClothesInfoVO implements Serializable {
/**
* 服装id
*/
private Long id;
/**
* 服装名称
*/
private String name;
/**
* 服装图片
*/
private String image;
/**
* 服装效果图
*/
private String effectImg;
/**
* 服装简介
*/
private String intro;
/**
* 服装价格
*/
private Double price;
/**
* 所属服装等级
*/
private String clothesType;
@Serial
private static final long serialVersionUID = 1L;
}

View File

@ -12,6 +12,7 @@ import com.cultural.heritage.utils.RegexUtils;
import org.apache.commons.lang3.ObjectUtils; import org.apache.commons.lang3.ObjectUtils;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.util.CollectionUtils;
import java.util.List; import java.util.List;
@ -23,7 +24,7 @@ public class AddressServiceImpl extends ServiceImpl<AddressMapper, Address> impl
Integer isDefault = address.getIsDefault(); Integer isDefault = address.getIsDefault();
Long userId = address.getUserId(); Long userId = address.getUserId();
List<Address> list = this.getUserAddressById(userId); List<Address> list = this.getUserAddressById(userId);
if (list.size() == 0) { if (CollectionUtils.isEmpty(list)) {
return ; return ;
} }
if (isDefault == 1) { if (isDefault == 1) {

View File

@ -12,6 +12,7 @@ import com.cultural.heritage.utils.RegexUtils;
import org.apache.commons.lang3.ObjectUtils; import org.apache.commons.lang3.ObjectUtils;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.util.CollectionUtils;
import java.util.List; import java.util.List;
@ -24,6 +25,9 @@ public class ContactsServiceImpl extends ServiceImpl<ContactsMapper, Contacts> i
Integer isDefault = contacts.getIsDefault(); Integer isDefault = contacts.getIsDefault();
Long userId = contacts.getUserId(); Long userId = contacts.getUserId();
List<Contacts> list = this.getUserContactsById(userId); List<Contacts> list = this.getUserContactsById(userId);
if (CollectionUtils.isEmpty(list)) {
return ;
}
if (isDefault == 1) { if (isDefault == 1) {
list.forEach(item -> item.setIsDefault(0)); list.forEach(item -> item.setIsDefault(0));
} }

View File

@ -0,0 +1,20 @@
package com.cultural.heritage.service.book;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.extension.service.IService;
import com.cultural.heritage.model.dto.advanceOrder.AdvanceOrderQueryRequest;
import com.cultural.heritage.model.entity.AdvanceOrder;
public interface AdvanceOrderService extends IService<AdvanceOrder> {
/**
* 校验
*/
void validAdvanceOrder(AdvanceOrder advanceOrder);
/**
* 获取查询条件
*/
QueryWrapper<AdvanceOrder> getQueryWrapper(AdvanceOrderQueryRequest advanceOrderQueryRequest);
}

View File

@ -0,0 +1,13 @@
package com.cultural.heritage.service.book;
import com.baomidou.mybatisplus.extension.service.IService;
import com.cultural.heritage.model.entity.BookingDate;
public interface BookingDateService extends IService<BookingDate> {
/**
* 初始化未来一天的预约日期
*/
BookingDate initBookingDate(String type, int offset);
}

View File

@ -0,0 +1,19 @@
package com.cultural.heritage.service.book;
import com.baomidou.mybatisplus.extension.service.IService;
import com.cultural.heritage.model.entity.ClothesGrade;
public interface ClothesGradeService extends IService<ClothesGrade> {
/**
* 校验
*/
void validClothesGrade(ClothesGrade clothesGrade, boolean update);
/**
* 删除当前服装等级下的所有服装
*/
void deleteCurrentAllClothes(Long id);
}

View File

@ -0,0 +1,20 @@
package com.cultural.heritage.service.book;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.extension.service.IService;
import com.cultural.heritage.model.dto.clothesinfo.ClothesInfoQueryRequest;
import com.cultural.heritage.model.entity.ClothesInfo;
public interface ClothesInfoService extends IService<ClothesInfo> {
/**
* 校验
*/
void validClothesInfo(ClothesInfo clothesInfo, boolean update);
/**
* 获取查询条件
*/
QueryWrapper<ClothesInfo> getQueryWrapper(ClothesInfoQueryRequest clothesInfoQueryRequest);
}

View File

@ -0,0 +1,92 @@
package com.cultural.heritage.service.book.impl;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.cultural.heritage.common.ErrorCode;
import com.cultural.heritage.constant.BookConstant;
import com.cultural.heritage.constant.CommonConstant;
import com.cultural.heritage.exception.BusinessException;
import com.cultural.heritage.mapper.AdvanceOrderMapper;
import com.cultural.heritage.model.dto.advanceOrder.AdvanceOrderQueryRequest;
import com.cultural.heritage.model.dto.snapshot.ContactsSnapshot;
import com.cultural.heritage.model.entity.AdvanceOrder;
import com.cultural.heritage.service.book.AdvanceOrderService;
import com.cultural.heritage.utils.SqlUtils;
import org.apache.commons.lang3.ObjectUtils;
import org.apache.commons.lang3.StringUtils;
import org.springframework.stereotype.Service;
@Service
public class AdvanceOrderServiceImpl extends ServiceImpl<AdvanceOrderMapper, AdvanceOrder> implements AdvanceOrderService {
/**
* 校验
*/
@Override
public void validAdvanceOrder(AdvanceOrder advanceOrder) {
String type = advanceOrder.getType();
String clothesType = advanceOrder.getClothesType();
Double deposit = advanceOrder.getDeposit();
ContactsSnapshot contactsSnapshot = advanceOrder.getContactsSnapshot();
String specificDate = advanceOrder.getSpecificDate();
String timeSlot = advanceOrder.getTimeSlot();
Integer isIndoors = advanceOrder.getIsIndoors();
Integer isMakeup = advanceOrder.getIsMakeup();
Integer isPhotography = advanceOrder.getIsPhotography();
String orderStatus = advanceOrder.getOrderStatus();
Long userId = advanceOrder.getUserId();
if (ObjectUtils.isEmpty(deposit) || deposit <= 0) {
throw new BusinessException(ErrorCode.PARAMS_ERROR, "定金参数错误");
}
if (ObjectUtils.anyNull(contactsSnapshot, isIndoors, isMakeup, isPhotography, userId)) {
throw new BusinessException(ErrorCode.PARAMS_ERROR, "存在参数为null");
}
if (isIndoors != 0 && isIndoors != 1 || isMakeup != 0 && isMakeup != 1 || isPhotography != 0 && isPhotography != 1) {
throw new BusinessException(ErrorCode.PARAMS_ERROR, "布尔参数错误");
}
if (StringUtils.isAnyBlank(type, clothesType, specificDate, timeSlot, orderStatus)) {
throw new BusinessException(ErrorCode.PARAMS_ERROR, "存在参数为空");
}
if (!type.equals(BookConstant.RENT_CLOTHES) && !type.equals(BookConstant.OWN_CLOTHES)) {
throw new BusinessException(ErrorCode.PARAMS_ERROR, "预约类型参数错误");
}
if (type.equals(BookConstant.RENT_CLOTHES)) {
if (isMakeup != 1 || isPhotography != 1) {
throw new BusinessException(ErrorCode.PARAMS_ERROR, "是否妆发或是否摄影参数错误");
}
}
}
/**
* 获取查询条件
*/
@Override
public QueryWrapper<AdvanceOrder> getQueryWrapper(AdvanceOrderQueryRequest advanceOrderQueryRequest) {
Long id = advanceOrderQueryRequest.getId();
String type = advanceOrderQueryRequest.getType();
Double minDeposit = advanceOrderQueryRequest.getMinDeposit();
Double maxDeposit = advanceOrderQueryRequest.getMaxDeposit();
String startTime = advanceOrderQueryRequest.getStartTime();
String endTime = advanceOrderQueryRequest.getEndTime();
String orderStatus = advanceOrderQueryRequest.getOrderStatus();
String sortField = advanceOrderQueryRequest.getSortField();
String sortOrder = advanceOrderQueryRequest.getSortOrder();
String createLeftTime = advanceOrderQueryRequest.getCreateLeftTime();
String createRightTime = advanceOrderQueryRequest.getCreateRightTime();
QueryWrapper<AdvanceOrder> queryWrapper = new QueryWrapper<>();
queryWrapper.eq(id != null, "id", id);
queryWrapper.eq(StringUtils.isNotBlank(type), "type", type);
queryWrapper.ge(ObjectUtils.isNotEmpty(minDeposit), "deposit", minDeposit);
queryWrapper.le(ObjectUtils.isNotEmpty(maxDeposit), "deposit", maxDeposit);
queryWrapper.between(StringUtils.isNotBlank(startTime) && StringUtils.isNotBlank(endTime), "specificDate", startTime, endTime);
queryWrapper.between(StringUtils.isNotBlank(createLeftTime) && StringUtils.isNotBlank(createRightTime), "createTime", createLeftTime, createRightTime);
queryWrapper.eq(StringUtils.isNotBlank(orderStatus), "orderStatus", orderStatus);
queryWrapper.orderBy(SqlUtils.validSortField(sortField), sortOrder.equals(CommonConstant.SORT_ORDER_ASC),
sortField);
return queryWrapper;
}
}

View File

@ -0,0 +1,28 @@
package com.cultural.heritage.service.book.impl;
import cn.hutool.core.date.DateUtil;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.cultural.heritage.mapper.BookingDateMapper;
import com.cultural.heritage.model.entity.BookingDate;
import com.cultural.heritage.service.book.BookingDateService;
import org.springframework.stereotype.Service;
@Service
public class BookingDateServiceImpl extends ServiceImpl<BookingDateMapper, BookingDate> implements BookingDateService {
/**
* 初始化未来一天的预约日期
*/
@Override
public BookingDate initBookingDate(String type, int offset) {
String currentDate = DateUtil.formatDate(DateUtil.offsetDay(DateUtil.date(), offset));
BookingDate bookingDate = new BookingDate();
bookingDate.setSpecificDate(currentDate);
bookingDate.setTimeSlot("00:00-00:00");
bookingDate.setIsAvailable(0);
bookingDate.setMaxNumber("0");
bookingDate.setType(type);
return bookingDate;
}
}

View File

@ -0,0 +1,76 @@
package com.cultural.heritage.service.book.impl;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.cultural.heritage.common.ErrorCode;
import com.cultural.heritage.exception.BusinessException;
import com.cultural.heritage.exception.ThrowUtils;
import com.cultural.heritage.mapper.ClothesGradeMapper;
import com.cultural.heritage.model.entity.ClothesGrade;
import com.cultural.heritage.model.entity.ClothesInfo;
import com.cultural.heritage.service.book.ClothesGradeService;
import com.cultural.heritage.service.book.ClothesInfoService;
import jakarta.annotation.Resource;
import org.apache.commons.lang3.ObjectUtils;
import org.apache.commons.lang3.StringUtils;
import org.springframework.stereotype.Service;
import java.util.List;
@Service
public class ClothesGradeServiceImpl extends ServiceImpl<ClothesGradeMapper, ClothesGrade> implements ClothesGradeService {
@Resource
private ClothesInfoService clothesInfoService;
/**
* 校验
*/
@Override
public void validClothesGrade(ClothesGrade clothesGrade, boolean update) {
Long id = clothesGrade.getId();
String clothesType = clothesGrade.getClothesType();
String image = clothesGrade.getImage();
Double minPrice = clothesGrade.getMinPrice();
Double maxPrice = clothesGrade.getMaxPrice();
String brief = clothesGrade.getBrief();
if (update) {
if (id == null) {
throw new BusinessException(ErrorCode.PARAMS_ERROR, "参数id错误");
}
}
if (ObjectUtils.isEmpty(minPrice) || minPrice <= 0) {
throw new BusinessException(ErrorCode.PARAMS_ERROR, "最低价格参数错误");
}
if (ObjectUtils.isEmpty(maxPrice) || maxPrice <= 0) {
throw new BusinessException(ErrorCode.PARAMS_ERROR, "最高价格参数错误");
}
if (minPrice >= maxPrice) {
throw new BusinessException(ErrorCode.PARAMS_ERROR, "最低价格不能高于最高价格");
}
if (StringUtils.isAnyBlank(clothesType, image, brief)) {
throw new BusinessException(ErrorCode.PARAMS_ERROR);
}
}
/**
* 删除当前服装等级下的所有服装
*/
@Override
public void deleteCurrentAllClothes(Long id) {
ClothesGrade clothesGrade = this.getById(id);
String clothesType = clothesGrade.getClothesType();
QueryWrapper<ClothesInfo> queryWrapper = new QueryWrapper<>();
queryWrapper.eq("clothesType", clothesType);
List<ClothesInfo> list = clothesInfoService.list(queryWrapper);
// 如果当前服装等级下存在服装就删掉
if (!ObjectUtils.isEmpty(list)) {
boolean result = clothesInfoService.removeBatchByIds(list);
ThrowUtils.throwIf(!result, ErrorCode.OPERATION_ERROR);
}
}
}

View File

@ -0,0 +1,70 @@
package com.cultural.heritage.service.book.impl;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.cultural.heritage.common.ErrorCode;
import com.cultural.heritage.constant.CommonConstant;
import com.cultural.heritage.exception.BusinessException;
import com.cultural.heritage.mapper.ClothesInfoMapper;
import com.cultural.heritage.model.dto.clothesinfo.ClothesInfoQueryRequest;
import com.cultural.heritage.model.entity.ClothesInfo;
import com.cultural.heritage.service.book.ClothesInfoService;
import com.cultural.heritage.utils.SqlUtils;
import org.apache.commons.lang3.ObjectUtils;
import org.apache.commons.lang3.StringUtils;
import org.springframework.stereotype.Service;
@Service
public class ClothesInfoServiceImpl extends ServiceImpl<ClothesInfoMapper, ClothesInfo> implements ClothesInfoService {
/**
* 校验
*/
@Override
public void validClothesInfo(ClothesInfo clothesInfo, boolean update) {
Long id = clothesInfo.getId();
String name = clothesInfo.getName();
String image = clothesInfo.getImage();
String effectImg = clothesInfo.getEffectImg();
String intro = clothesInfo.getIntro();
Double price = clothesInfo.getPrice();
String clothesType = clothesInfo.getClothesType();
if (update) {
if (id == null) {
throw new BusinessException(ErrorCode.PARAMS_ERROR);
}
}
if (StringUtils.isAnyBlank(name, image, effectImg, intro, clothesType)) {
throw new BusinessException(ErrorCode.PARAMS_ERROR, "参数不全");
}
if (ObjectUtils.isEmpty(price) || price < 0) {
throw new BusinessException(ErrorCode.PARAMS_ERROR, "价格参数错误");
}
}
/**
* 获取查询条件
*/
@Override
public QueryWrapper<ClothesInfo> getQueryWrapper(ClothesInfoQueryRequest clothesInfoQueryRequest) {
Long id = clothesInfoQueryRequest.getId();
String name = clothesInfoQueryRequest.getName();
Double minPrice = clothesInfoQueryRequest.getMinPrice();
Double maxPrice = clothesInfoQueryRequest.getMaxPrice();
String clothesType = clothesInfoQueryRequest.getClothesType();
String sortField = clothesInfoQueryRequest.getSortField();
String sortOrder = clothesInfoQueryRequest.getSortOrder();
QueryWrapper<ClothesInfo> queryWrapper = new QueryWrapper<>();
queryWrapper.eq(id != null, "id", id);
queryWrapper.like(StringUtils.isNotBlank(name), "name", name);
queryWrapper.eq(StringUtils.isNotBlank(clothesType), "clothesType", clothesType);
queryWrapper.ge(ObjectUtils.isNotEmpty(minPrice), "price", minPrice);
queryWrapper.le(ObjectUtils.isNotEmpty(maxPrice), "price", maxPrice);
queryWrapper.orderBy(SqlUtils.validSortField(sortField), sortOrder.equals(CommonConstant.SORT_ORDER_ASC),
sortField);
return queryWrapper;
}
}

View File

@ -78,9 +78,7 @@ public class GoodServiceImpl extends ServiceImpl<GoodMapper, Good> implements Go
String detailImg = good.getDetailImg(); String detailImg = good.getDetailImg();
String label = good.getLabel(); String label = good.getLabel();
Integer inventory = good.getInventory(); Integer inventory = good.getInventory();
Integer isGoodType = good.getIsGoodType();
Integer festivalOrder = good.getFestivalOrder(); Integer festivalOrder = good.getFestivalOrder();
Integer isShelves = good.getIsShelves();
Double price = good.getPrice(); Double price = good.getPrice();
if (update) { if (update) {
@ -94,15 +92,9 @@ public class GoodServiceImpl extends ServiceImpl<GoodMapper, Good> implements Go
if (ObjectUtils.isEmpty(inventory) || inventory < 1) { if (ObjectUtils.isEmpty(inventory) || inventory < 1) {
throw new BusinessException(ErrorCode.PARAMS_ERROR, "库存量不能小于1"); throw new BusinessException(ErrorCode.PARAMS_ERROR, "库存量不能小于1");
} }
if (ObjectUtils.isEmpty(isGoodType) || isGoodType != 0 && isGoodType != 1) {
throw new BusinessException(ErrorCode.PARAMS_ERROR, "商品类型参数错误");
}
if (ObjectUtils.isEmpty(festivalOrder) || festivalOrder <= 0) { if (ObjectUtils.isEmpty(festivalOrder) || festivalOrder <= 0) {
throw new BusinessException(ErrorCode.PARAMS_ERROR, "节日参数错误"); throw new BusinessException(ErrorCode.PARAMS_ERROR, "节日参数错误");
} }
if (ObjectUtils.isEmpty(isShelves) || isShelves != 0 && isShelves != 1) {
throw new BusinessException(ErrorCode.PARAMS_ERROR, "是否上架参数错误");
}
if (ObjectUtils.isEmpty(price) || price <= 0) { if (ObjectUtils.isEmpty(price) || price <= 0) {
throw new BusinessException(ErrorCode.PARAMS_ERROR, "商品价格不能小于等于0"); throw new BusinessException(ErrorCode.PARAMS_ERROR, "商品价格不能小于等于0");
} }

View File

@ -1,9 +1,17 @@
spring: spring:
datasource: datasource:
# 生产环境
# driver-class-name: com.mysql.cj.jdbc.Driver
# url: jdbc:mysql://154.8.193.216:3306/feiyi?serverTimezone=Asia/Shanghai
# username: feiyi
# password: 123456asd
# 测试环境
driver-class-name: com.mysql.cj.jdbc.Driver driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://154.8.193.216:3306/feiyi?serverTimezone=Asia/Shanghai url: jdbc:mysql://123.249.108.160:3306/feiyi?serverTimezone=Asia/Shanghai
username: feiyi username: feiyi
password: 123456asd password: 123456asd
hikari: hikari:
max-lifetime: 120000 max-lifetime: 120000
data: data:

View File

@ -0,0 +1,7 @@
<?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="com.cultural.heritage.mapper.AdvanceOrderMapper">
</mapper>

View File

@ -0,0 +1,7 @@
<?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="com.cultural.heritage.mapper.BookingDateMapper">
</mapper>

View File

@ -0,0 +1,7 @@
<?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="com.cultural.heritage.mapper.ClothesGradeMapper">
</mapper>

View File

@ -0,0 +1,7 @@
<?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="com.cultural.heritage.mapper.ClothesInfoMapper">
</mapper>