| | |
| | | package com.hx.phip.dao.mapper; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | import com.hx.mybatisTool.SqlSentence; |
| | | import com.hx.phiappt.model.order.OrdersTotal; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | public interface OrdersTotalMapper { |
| | | /**新增,返回主键*/ |
| | |
| | | int deleteWhere(SqlSentence sqlSentence); |
| | | /**删除,返回删除数量*/ |
| | | int deleteById(Object object); |
| | | /*更新总订单 支付信息*/ |
| | | void updatePay(@Param("payRecharge")BigDecimal payRecharge,@Param("payIncrement") BigDecimal payIncrement, |
| | | @Param("payTotal") BigDecimal payTotal,@Param("status") Integer status, @Param("id")String id,@Param("payTime") Date payTime); |
| | | } |