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 selectAOrderStatusList(); /** * 修改订单状态标志为1 * * @param id 订单状态ID * @return 结果 */ public int updateAOrderStatusFlag(Long id); }