模型库、矢量文件
This commit is contained in:
		| @ -0,0 +1,8 @@ | ||||
| package com.yj.earth.business.service; | ||||
|  | ||||
| import com.yj.earth.business.domain.WebSource; | ||||
| import com.baomidou.mybatisplus.extension.service.IService; | ||||
|  | ||||
| public interface WebSourceService extends IService<WebSource> { | ||||
|  | ||||
| } | ||||
| @ -0,0 +1,20 @@ | ||||
| package com.yj.earth.business.service.impl; | ||||
|  | ||||
| import com.yj.earth.business.domain.WebSource; | ||||
| import com.yj.earth.business.mapper.WebSourceMapper; | ||||
| import com.yj.earth.business.service.WebSourceService; | ||||
| import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; | ||||
| import org.springframework.stereotype.Service; | ||||
|  | ||||
| /** | ||||
|  * <p> | ||||
|  *  服务实现类 | ||||
|  * </p> | ||||
|  * | ||||
|  * @author 周志雄 | ||||
|  * @since 2025-09-26 | ||||
|  */ | ||||
| @Service | ||||
| public class WebSourceServiceImpl extends ServiceImpl<WebSourceMapper, WebSource> implements WebSourceService { | ||||
|  | ||||
| } | ||||
		Reference in New Issue
	
	Block a user
	 ZZX9599
					ZZX9599