28 lines
681 B
Java
28 lines
681 B
Java
package com.bruce.sams.service.impl;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
import com.bruce.sams.domain.ams.Activity;
|
|
import com.bruce.sams.service.ActivityService;
|
|
import com.bruce.sams.mapper.ActivityMapper;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
/**
|
|
* @author bruce
|
|
* @description 针对表【ams_activity(活动表)】的数据库操作Service实现
|
|
* @createDate 2025-02-19 11:22:14
|
|
*/
|
|
@Service
|
|
public class ActivityServiceImpl extends ServiceImpl<ActivityMapper, Activity>
|
|
implements ActivityService{
|
|
|
|
@Autowired
|
|
private ActivityMapper activityMapper;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|