package com.mzl.flower.service.productOrders;
|
|
import com.mzl.flower.dto.request.productOrders.ProductOrdersCreateDTO;
|
import com.mzl.flower.entity.productOrders.ProductOrdersDO;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import java.util.Map;
|
|
/**
|
* <p>
|
* 服务类
|
* </p>
|
*
|
* @author generator@TaoJie
|
* @since 2025-03-31
|
*/
|
public interface ProductOrdersService extends IService<ProductOrdersDO> {
|
|
/**
|
* 创建订单
|
* @param productOrdersDO
|
* @return
|
*/
|
ProductOrdersDO createProductOrders(ProductOrdersDO productOrdersDO);
|
|
Boolean updateProductOrderStatus(Map<String, String> params);
|
}
|