代码提交
This commit is contained in:
@ -0,0 +1,16 @@
|
||||
package com.yj.earth.business.service;
|
||||
|
||||
import com.yj.earth.business.domain.PbfInfo;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author 周志雄
|
||||
* @since 2025-09-30
|
||||
*/
|
||||
public interface PbfInfoService extends IService<PbfInfo> {
|
||||
|
||||
}
|
||||
@ -0,0 +1,20 @@
|
||||
package com.yj.earth.business.service.impl;
|
||||
|
||||
import com.yj.earth.business.domain.PbfInfo;
|
||||
import com.yj.earth.business.mapper.PbfInfoMapper;
|
||||
import com.yj.earth.business.service.PbfInfoService;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 服务实现类
|
||||
* </p>
|
||||
*
|
||||
* @author 周志雄
|
||||
* @since 2025-09-30
|
||||
*/
|
||||
@Service
|
||||
public class PbfInfoServiceImpl extends ServiceImpl<PbfInfoMapper, PbfInfo> implements PbfInfoService {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user