20 lines
456 B
Java
20 lines
456 B
Java
package com.peanut.modules.book.dao;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.peanut.modules.book.entity.PayWechatOrderEntity;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
/**
|
|
* 微信订单表
|
|
*
|
|
* @author yl
|
|
* @email yl328572838@163.com
|
|
* @date 2022-08-29 15:27:44
|
|
*/
|
|
@Repository
|
|
@Mapper
|
|
public interface PayWechatOrderDao extends BaseMapper<PayWechatOrderEntity> {
|
|
|
|
}
|