| | |
| | | |
| | | 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 org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author zhibing.pu |
| | | * @date 2023/6/29 10:44 |
| | | */ |
| | | 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); |
| | | } |