package com.yssh.dao;
|
|
import com.yssh.entity.YsshLocation;
|
import com.yssh.entity.YsshPfsh;
|
import com.yssh.entity.YsshSuYuan;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
|
/**
|
* @author wMeng
|
* @ClassName YsshQxshMapper
|
* @Description TODO
|
* @date 2022/10/31 14:45
|
* @Version 1.0
|
*/
|
@Mapper
|
public interface YsshPfshMapper {
|
List<YsshPfsh> query(@Param("name") String name);
|
List<YsshPfsh> getAll();
|
int insert(YsshPfsh ysshPfsh);
|
int delete(String id);
|
}
|