package com.yssh.dao; import com.yssh.entity.YsshLocation; import com.yssh.entity.YsshPfsh; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.List; /** * @author wMeng * @ClassName YsshLocationMapper * @Description TODO * @date 2022/10/30 13:37 * @Version 1.0 */ @Mapper public interface YsshLocationMapper { List query(@Param("name") String name, @Param("type") String type); List getAll(); int insertLocation(YsshLocation ysshLocation); int deleteLocation(String id); }