| | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.dsh.course.entity.CoursePackagePaymentConfig; |
| | | import com.dsh.course.model.CoursePackagePayDTO; |
| | | import com.dsh.course.model.CoursePackagePaymentQuery; |
| | | import com.dsh.course.model.CoursePackagePaymentVO; |
| | | import com.dsh.course.model.*; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | public interface CoursePackagePaymentConfigMapper extends BaseMapper<CoursePackagePaymentConfig> { |
| | | List<CoursePackagePaymentVO> listAll(@Param("query") CoursePackagePaymentQuery query); |
| | | |
| | | int changeState(@Param("ids") List<Long> ids,@Param("payUserName") String payUserName,@Param("payUserId") Integer payUserId); |
| | | int changeState(@Param("ids") Long ids, @Param("payUserName") String payUserName, @Param("payUserId") Integer payUserId); |
| | | |
| | | List<RegisterOrderVO> listAllRegister(@Param("query") RegisterOrderQuery query, @Param("sTime") String sTime, @Param("eTime") String eTime, @Param("amount") BigDecimal amount); |
| | | |
| | | } |