wlzboy
2025-09-27 c1147646b9ef1d713a202d7ab8cf3ea8d677f142
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
package com.ruoyi.system.service;
 
import java.util.List;
import com.ruoyi.system.domain.AOrderStatus;
 
/**
 * 订单状态 服务层
 */
public interface IAOrderStatusService {
    /**
     * 查询订单状态列表
     * 默认查询 flag = 0 的记录
     * 
     * @return 订单状态集合
     */
    public List<AOrderStatus> selectAOrderStatusList();
 
    /**
     * 修改订单状态标志为1
     * 
     * @param id 订单状态ID
     * @return 结果
     */
    public int updateAOrderStatusFlag(Long id);