Administrator
2025-11-26 f84ad7db2a9eb863404be1da330178df6c2b7fb9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.gs.xky.service.Impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import generator.domain.QwStaff;
import com.gs.xky.service.QwStaffService;
import com.gs.xky.mapper.QwStaffMapper;
import org.springframework.stereotype.Service;
 
/**
* @author Administrator
* @description 针对表【QW_STAFF】的数据库操作Service实现
* @createDate 2025-11-26 10:51:47
*/
@Service
public class QwStaffServiceImpl extends ServiceImpl<QwStaffMapper, QwStaff>
    implements QwStaffService{
 
}