| | |
| | | package com.kidgrow.oprationcenter.service; |
| | | |
| | | import com.kidgrow.common.annotation.LoginUser; |
| | | import com.kidgrow.common.model.ResultBody; |
| | | import com.kidgrow.common.model.SysUser; |
| | | import com.kidgrow.oprationcenter.model.ProductOrder; |
| | | import com.kidgrow.common.model.PageResult; |
| | | import com.kidgrow.common.service.ISuperService; |
| | |
| | | * @param params |
| | | * @return |
| | | */ |
| | | PageResult<ProductOrder> findList(Map<String, Object> params); |
| | | PageResult<ProductOrder> findList(Map<String, Object> params,@LoginUser SysUser sysUser); |
| | | |
| | | |
| | | /** |
| | |
| | | * @return ProductOrder对象 |
| | | */ |
| | | ProductOrder findByObject(ProductOrder productOrder); |
| | | /** |
| | | * 状态变更 |
| | | * @param params |
| | | * @return |
| | | */ |
| | | ResultBody updateEnabled(Map<String, Object> params); |
| | | |
| | | /** |
| | | * 删除指定orderid下的套餐数据 |
| | | * @param orderId |
| | | * @return |
| | | */ |
| | | int delProductDetail(Long orderId); |
| | | /** |
| | | * 用户充值(创建订单,增加充值记录,冲套餐) |
| | | * @param params |
| | | * @return |
| | | */ |
| | | boolean saveProductDetail(Map<String,Object> params); |
| | | } |
| | | |