Selaa lähdekoodia

首页异常数据调整

zouxuan 2 vuotta sitten
vanhempi
commit
b0e8edfa15

+ 0 - 11
mec-biz/src/main/java/com/ym/mec/biz/dal/page/ArrearageStudentsQueryInfo.java

@@ -17,9 +17,6 @@ public class ArrearageStudentsQueryInfo extends QueryInfo {
 
     private Integer eduTeacherId;
 
-    @ApiModelProperty(value = "未缴费类型:0历史,1进行中")
-    private Integer noPaymentType;
-
     private Integer courseViewType;
 
     @ApiModelProperty(value = "是否排课(用于区分欠费学员异常和欠费学员提醒)")
@@ -72,12 +69,4 @@ public class ArrearageStudentsQueryInfo extends QueryInfo {
     public void setEduTeacherId(Integer eduTeacherId) {
         this.eduTeacherId = eduTeacherId;
     }
-
-    public Integer getNoPaymentType() {
-        return noPaymentType;
-    }
-
-    public void setNoPaymentType(Integer noPaymentType) {
-        this.noPaymentType = noPaymentType;
-    }
 }

+ 0 - 6
mec-biz/src/main/resources/config/mybatis/MusicGroupPaymentCalenderDetailMapper.xml

@@ -448,12 +448,6 @@
 			<if test="hasCourse != null and hasCourse == false">
 				AND mgpsc.used_course_minutes_ = 0
 			</if>
-			<if test="noPaymentType==null or noPaymentType==0">
-				AND DATE_FORMAT(NOW(),'%Y-%m-%d') > DATE_FORMAT(mgpc.deadline_payment_date_,'%Y-%m-%d')
-			</if>
-			<if test="noPaymentType!=null and noPaymentType==1">
-				AND DATE_FORMAT(NOW(),'%Y-%m-%d') BETWEEN DATE_FORMAT(mgpc.start_payment_date_,'%Y-%m-%d') AND DATE_FORMAT(mgpc.deadline_payment_date_,'%Y-%m-%d')
-			</if>
 			AND mgpcd.payment_status_ = 'NON_PAYMENT' AND mgpc.batch_no_ IS NOT NULL AND mgpc.pay_user_type_ = 'STUDENT'
 			AND mgpc.current_total_amount_ > 0
 			<if test="organId != null and organId != ''">