package com.wms.mapper; import com.wms.model.entity.table.Stand; import org.apache.ibatis.annotations.Mapper; import java.util.List; @Mapper public interface StandMapper { List selStands(Stand stand); Stand selStandById(String standId); int addStand(Stand stand); int modifyStand(Stand stand); int deleteStand(Stand stand); }