太湖英才

This commit is contained in:
wuchunlei
2025-05-13 17:55:37 +08:00
parent e4730b8a2a
commit 6ec399baff
7 changed files with 267 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package com.peanut.modules.common.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.peanut.modules.common.dao.TaihuTalentDao;
import com.peanut.modules.common.entity.TaihuTalent;
import com.peanut.modules.common.service.TaihuTalentService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
@Slf4j
@Service("commonTaihuTalentService")
public class TaihuTalentServiceImpl extends ServiceImpl<TaihuTalentDao, TaihuTalent> implements TaihuTalentService {
}