package com.ycl.service.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.ycl.dao.NewsDutyDao;
|
import com.ycl.entity.NewsDuty;
|
import com.ycl.service.NewsDutyService;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* 值班表(NewsDuty)表服务实现类
|
*
|
* @author makejava
|
* @since 2022-11-17 11:38:27
|
*/
|
@Service("newsDutyService")
|
public class NewsDutyServiceImpl extends ServiceImpl<NewsDutyDao, NewsDuty> implements NewsDutyService {
|
|
}
|
|