xiaoyong931011
2021-05-10 6841655f98a81fe9dbe5229a3011088ac2fbf81e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.xcong.excoin.modules.yunding.service.Impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.xcong.excoin.modules.yunding.dao.YdOrderDao;
import com.xcong.excoin.modules.yunding.entity.YdOrderEntity;
import com.xcong.excoin.modules.yunding.service.YunDingService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
 
@Slf4j
@Service
public class YunDingServiceImpl extends ServiceImpl<YdOrderDao, YdOrderEntity> implements YunDingService {
 
}