1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.zbooksoft.gdmis.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.zbooksoft.gdmis.data.entity.CatYswjxx;
|
|
| /**
| * @Description
| * @Author zhai
| * @Date 2024/7/31
| **/
| public interface CatYswjxxService extends IService<CatYswjxx> {
| String getMaxFileType(Long ajId, String fileType);
| }
|
|