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