--微信支付

This commit is contained in:
yc13649764453
2023-05-24 18:13:36 +08:00
parent 4e7aec5b60
commit 068192327c
25 changed files with 3241 additions and 657 deletions

View File

@@ -0,0 +1,25 @@
/**
* Copyright (c) 2016-2019 人人开源 All rights reserved.
*
* https://www.renren.io
*
* 版权所有,侵权必究!
*/
package com.peanut.modules.sys.dao;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.peanut.modules.sys.entity.SysAgreementEntity;
import com.peanut.modules.sys.entity.SysLogEntity;
import org.apache.ibatis.annotations.Mapper;
/**
* 协议
*
* @author Mark sunlightcs@gmail.com
*/
@Mapper
public interface SysAgreementDao extends BaseMapper<SysAgreementEntity> {
}