tj
2025-04-01 16c60b7e3b834b05599882ab1ffe99ec78664762
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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);
}