package com.yssh.service; import com.yssh.entity.YsshPfsh; import java.util.List; /** * @author wMeng * @ClassName YsshQxshService * @Description TODO * @date 2022/10/31 14:45 * @Version 1.0 */ public interface YsshPfshService { List query(String name); List getAll(); public int insert(YsshPfsh ysshPfsh); int delete(String id); }