zqy
2025-08-02 05771ca6a9d16ad4d74b326ce634d60171a15a06
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.ruoyi.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.domain.ZfCode;
 
import java.util.List;
 
/**
 * @Author Jinquan_Ou
 * @Description
 * @Date 2023-07-16 23:32
 * @Version 1.0.0
 **/
public interface ZfCodeService extends IService<ZfCode> {
    List<ZfCode> likeGetByName(String name);
 
    List<String> getNameByCode(List<Long> codeList);
}