公告板
版本库
活动
搜索
登录
java
/
PlayPai
玩湃
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
合并代码
puzhibing
2023-07-06
c0f6294b0be6789fddd652f89f820fcf6d5526cf
[java/PlayPai.git]
/
cloud-server-competition
/
src
/
main
/
java
/
com
/
dsh
/
competition
/
service
/
IPaymentCompetitionService.java
1
2
3
4
5
6
7
8
9
10
11
package com.dsh.competition.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.dsh.competition.entity.PaymentCompetition;
/**
* @author zhibing.pu
* @date 2023/7/6 16:37
*/
public interface IPaymentCompetitionService extends IService<PaymentCompetition> {
}