|
@@ -7,6 +7,7 @@ import java.util.Set;
|
|
import com.ym.mec.biz.dal.dto.FeeStudentDto;
|
|
import com.ym.mec.biz.dal.dto.FeeStudentDto;
|
|
import com.ym.mec.biz.dal.dto.MusicArrearageStudentDto;
|
|
import com.ym.mec.biz.dal.dto.MusicArrearageStudentDto;
|
|
import com.ym.mec.biz.dal.dto.SimpleUserDto;
|
|
import com.ym.mec.biz.dal.dto.SimpleUserDto;
|
|
|
|
+import com.ym.mec.biz.dal.entity.MusicGroup;
|
|
import com.ym.mec.biz.dal.entity.MusicGroupPaymentCalender;
|
|
import com.ym.mec.biz.dal.entity.MusicGroupPaymentCalender;
|
|
import com.ym.mec.biz.dal.entity.MusicGroupPaymentCalenderDetail;
|
|
import com.ym.mec.biz.dal.entity.MusicGroupPaymentCalenderDetail;
|
|
import com.ym.mec.biz.dal.entity.MusicGroupPaymentCalenderStudentDetail;
|
|
import com.ym.mec.biz.dal.entity.MusicGroupPaymentCalenderStudentDetail;
|
|
@@ -14,6 +15,7 @@ import com.ym.mec.biz.dal.page.ArrearageStudentsQueryInfo;
|
|
import com.ym.mec.common.page.PageInfo;
|
|
import com.ym.mec.common.page.PageInfo;
|
|
import com.ym.mec.common.page.QueryInfo;
|
|
import com.ym.mec.common.page.QueryInfo;
|
|
import com.ym.mec.common.service.BaseService;
|
|
import com.ym.mec.common.service.BaseService;
|
|
|
|
+import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
public interface MusicGroupPaymentCalenderDetailService extends BaseService<Long, MusicGroupPaymentCalenderDetail> {
|
|
public interface MusicGroupPaymentCalenderDetailService extends BaseService<Long, MusicGroupPaymentCalenderDetail> {
|
|
|
|
|
|
@@ -85,5 +87,21 @@ public interface MusicGroupPaymentCalenderDetailService extends BaseService<Long
|
|
*/
|
|
*/
|
|
void batchDel(String musicGroupPaymentCalenderDetailIds);
|
|
void batchDel(String musicGroupPaymentCalenderDetailIds);
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * @describe 未缴费学员列表
|
|
|
|
+ * @author Joburgess
|
|
|
|
+ * @date 2021/2/3 0003
|
|
|
|
+ * @param queryInfo:
|
|
|
|
+ * @return com.ym.mec.common.page.PageInfo<com.ym.mec.biz.dal.dto.MusicArrearageStudentDto>
|
|
|
|
+ */
|
|
PageInfo<MusicArrearageStudentDto> queryArrearageStudents(ArrearageStudentsQueryInfo queryInfo);
|
|
PageInfo<MusicArrearageStudentDto> queryArrearageStudents(ArrearageStudentsQueryInfo queryInfo);
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * @describe 获取未缴费学员关联乐团列表
|
|
|
|
+ * @author Joburgess
|
|
|
|
+ * @date 2021/2/3 0003
|
|
|
|
+ * @param organIds:
|
|
|
|
+ * @return java.util.List<com.ym.mec.biz.dal.entity.MusicGroup>
|
|
|
|
+ */
|
|
|
|
+ List<MusicGroup> getNoPaymentStudentMusicGroups(String organIds);
|
|
}
|
|
}
|