更新代码

This commit is contained in:
2026-04-21 20:04:59 +08:00
parent 65bfa963f8
commit b394cc6d13
75 changed files with 3143 additions and 192 deletions

View File

@@ -0,0 +1,15 @@
package org.chenyon.pay;
import org.rcy.framework.data.dao.BaseDao;
import java.util.List;
public interface WeAppSubOrderDao extends BaseDao<WeAppSubOrder> {
WeAppSubOrder selectByBillNo(String billNo);
List<WeAppSubOrder> selectByMainOrderId(Long mainOrderId);
Integer updateById(WeAppSubOrder subOrder);
}