tjx
2025-11-26 7f46bc0760299c943c0373215f75986ee8062821
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.gs.xky.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.gs.xky.entity.QwStaff;
 
/**
 * @author Administrator
 * @description 针对表【QW_STAFF】的数据库操作Service
 * @createDate 2025-11-26 10:51:47
 */
public interface QwStaffService extends IService<QwStaff> {
 
}