1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.hxzk.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.hxzk.pojo.TbZypHandel;
import org.springframework.stereotype.Service;
 
import java.util.List;
 
 
public interface ZypHandelService extends IService<TbZypHandel> {
    void XuanZeJieShouRen(TbZypHandel zypHandel);
 
    List<TbZypHandel> findCodeHandel(TbZypHandel zypHandel);
}