SchoolService.java 579 B

12345678910111213141516171819202122
  1. package com.ym.mec.collectfee.service;
  2. import com.ym.mec.collectfee.common.service.BaseService;
  3. import com.ym.mec.collectfee.entity.ResponseCourseEntity;
  4. import com.ym.mec.collectfee.entity.School;
  5. public interface SchoolService extends BaseService<Integer, School> {
  6. School upsetSchool(ResponseCourseEntity courseEntity);
  7. /**
  8. * 开启乐团缴费
  9. * @param classId
  10. */
  11. void openClassPay(Integer classId,String smsMsg,int type);
  12. /**
  13. * 缴费成功发送短信
  14. * @param mobile
  15. */
  16. void sendPayMsg(String mobile,String amount);
  17. }