| | |
| | | import com.oying.modules.sh.domain.Order; |
| | | import com.oying.modules.sh.domain.dto.OrderQueryCriteria; |
| | | import java.util.List; |
| | | |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | |
| | | IPage<Order> findAll(@Param("criteria") OrderQueryCriteria criteria, Page<Object> page); |
| | | |
| | | List<Order> findAll(@Param("criteria") OrderQueryCriteria criteria); |
| | | |
| | | Order getByOrderNum(String orderNum); |
| | | |
| | | void updatePayStatus(String orderNum, String payState, String payMessage, String payTime); |
| | | |
| | | void updateCloseStatus(String orderNum, String payState); |
| | | } |