yonge 4 anos atrás
pai
commit
1fdb6ebafb

+ 10 - 0
mec-biz/src/main/java/com/ym/mec/biz/dal/page/MusicGroupPaymentCalenderQueryInfo.java

@@ -16,6 +16,8 @@ public class MusicGroupPaymentCalenderQueryInfo extends QueryInfo {
 	private PaymentCalenderStatusEnum status;
 
 	private String organId;
+	
+	private String batchNo;
 
 	public MusicGroupPaymentCalender.PaymentType getPaymentType() {
 		return paymentType;
@@ -56,4 +58,12 @@ public class MusicGroupPaymentCalenderQueryInfo extends QueryInfo {
 	public void setStatus(PaymentCalenderStatusEnum status) {
 		this.status = status;
 	}
+
+	public String getBatchNo() {
+		return batchNo;
+	}
+
+	public void setBatchNo(String batchNo) {
+		this.batchNo = batchNo;
+	}
 }

+ 3 - 0
mec-biz/src/main/resources/config/mybatis/MusicGroupPaymentCalenderMapper.xml

@@ -248,6 +248,9 @@
             <if test="musicGroupId != null">
                 AND mgpc.music_group_id_ = #{musicGroupId}
             </if>
+            <if test="batchNo != null">
+                AND mgpc.batch_no_ = #{batchNo}
+            </if>
             <if test="payUserType != null">
                 AND mgpc.pay_user_type_ = #{payUserType,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler}
             </if>