1.提交代码
parent
f224cf2920
commit
89b12dd403
@ -0,0 +1,22 @@
|
||||
package com.glxp.udi.admin.dao.inout;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.glxp.udi.admin.entity.inout.UnitMaintainPlatform;
|
||||
import com.glxp.udi.admin.res.info.PlatformLinkResponse;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
@Mapper
|
||||
public interface UnitMaintainPlatformDao extends BaseMapper<UnitMaintainPlatform> {
|
||||
|
||||
/**
|
||||
* 查询医院客户列表
|
||||
*
|
||||
* @param page
|
||||
* @param customerId
|
||||
* @param key
|
||||
* @return
|
||||
*/
|
||||
IPage<PlatformLinkResponse> getLinkPlatformList(IPage<PlatformLinkResponse> page, @Param("customerId") String customerId, @Param("key") String key);
|
||||
}
|
Loading…
Reference in New Issue