fangyuan
2022-11-17 059eebfe1c54750e74e290ed7503e2cbf3f2f740
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.ycl.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ycl.mapper.NewsDutyDao;
import com.ycl.entity.NewsDuty;
import com.ycl.service.NewsDutyService;
import org.springframework.stereotype.Service;
 
/**
 * 值班表(NewsDuty)表服务实现类
 *
 * @author makejava
 * @since 2022-11-16 16:52:30
 */
@Service("newsDutyService")
public class NewsDutyServiceImpl extends ServiceImpl<NewsDutyDao, NewsDuty> implements NewsDutyService {
 
}