package com.yssh.service; import com.yssh.entity.YsshSuYuanX00; import com.yssh.entity.dto.YsshSuYuanX00UpdateBatchParam; import java.util.List; /** * @author lishijia * @ClassName YsshSuYuan200Service * @Description TODO * @date 2022/11/28 10:47 * @Version 1.0 */ public interface YsshSuYuan200Service { List query(String name); List queryByIds(List ids); List getAll(); public int insert(YsshSuYuanX00 ysshSuYuan); int delete(String id); int update(YsshSuYuanX00 ysshSuYuan); public int updateBatch(YsshSuYuanX00UpdateBatchParam param); }