#
luxiaotao1123
2024-02-23 cb0b9b81c668a4b03dfa8da30a0d3c14302d25fe
1
2
3
4
5
6
7
8
9
10
11
12
package com.zy.asrs.common.wms.mapper;
 
import com.zy.asrs.common.wms.entity.Item;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
 
@Mapper
@Repository
public interface ItemMapper extends BaseMapper<Item> {
 
}