zqy
2024-06-25 f0a74544e0ab2ee3d191a3d46bd82a0274d67b6d
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);
}