20 lines
360 B
Java
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);
|
|
}
|