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);
|
}
|