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
| package com.ruoyi.system.mapper;
|
| import java.util.List;
| import com.ruoyi.system.domain.AOrderStatus;
|
| /**
| * 订单状态 数据层
| */
| public interface AOrderStatusMapper {
| /**
| * 查询订单状态列表
| * 默认查询 flag = 0 的记录
| *
| * @param aOrderStatus 订单状态信息
| * @return 订单状态集合
| */
| public List<AOrderStatus> selectAOrderStatusList();
|
| /**
| * 修改订单状态标志为1
| *
| * @param id 订单状态ID
| * @return 结果
| */
| public int updateAOrderStatusFlag(Long id);
| }
|
|