zqy
2024-08-02 1c592426db7393a5d891478be3e303563c038d30
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);
}