15 lines
307 B
Java
Raw Normal View History

2025-07-12 15:31:52 +08:00
package edu.whut.infrastructure.dao;
import edu.whut.infrastructure.dao.po.PayOrder;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface IOrderDao {
void insert(PayOrder payOrder);
PayOrder queryUnPayOrder(PayOrder payOrder);
void updateOrderPayInfo(PayOrder payOrder);
2025-07-12 15:31:52 +08:00
}