wms-serve-mule/src/main/java/com/wms/mapper/StandMapper.java
2025-03-19 10:01:54 +08:00

20 lines
360 B
Java

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<Stand> selStands(Stand stand);
Stand selStandById(String standId);
int addStand(Stand stand);
int modifyStand(Stand stand);
int deleteStand(Stand stand);
}