2024-07-04 07:43:04 +08:00
|
|
|
package com.wms.mapper;
|
|
|
|
|
|
2025-03-19 10:01:54 +08:00
|
|
|
import com.wms.model.entity.table.Stand;
|
2024-07-04 07:43:04 +08:00
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
@Mapper
|
|
|
|
|
public interface StandMapper {
|
|
|
|
|
List<Stand> selStands(Stand stand);
|
|
|
|
|
|
|
|
|
|
Stand selStandById(String standId);
|
|
|
|
|
|
|
|
|
|
int addStand(Stand stand);
|
|
|
|
|
|
|
|
|
|
int modifyStand(Stand stand);
|
|
|
|
|
|
|
|
|
|
int deleteStand(Stand stand);
|
|
|
|
|
}
|