Browse Source

导出修改

liweifan 3 năm trước cách đây
mục cha
commit
0787b7898e

+ 1 - 1
mec-biz/src/main/java/com/ym/mec/biz/dal/entity/StudentRegistration.java

@@ -91,7 +91,7 @@ public class StudentRegistration extends BaseEntity {
     @ApiModelProperty(value = "生日", required = false)
     private Date birthdate;
 
-    @ApiModelProperty(value = "缴费状态(1-已缴费 0-未交费)", required = false)
+    @ApiModelProperty(value = "缴费状态(2-已缴费 1-开启缴费 0-未交费)", required = false)
     private PaymentStatusEnum paymentStatus;
 
     @ApiModelProperty(value = "用户所在乐团状态)",required = false)

+ 1 - 1
mec-biz/src/main/resources/config/mybatis/StudentExtracurricularExercisesSituationMapper.xml

@@ -938,7 +938,7 @@
             left join music_group b on a.music_group_id_ = b.id_
             left join sys_user u ON a.user_id_ = u.id_
             LEFT JOIN organization organ ON organ.id_=u.organ_id_ and organ.del_flag_ = 0
-            where payment_status_ = 1 and b.status_ = 'PROGRESS'
+            where payment_status_ = 2 and b.status_ = 'PROGRESS'
             <if test="params.tenantId != null and params.tenantId > 0">
                 AND a.tenant_id_ = #{params.tenantId}
             </if>