无关风月
2024-09-03 56dfe0d4bf81262622a1919cceb2b039fd356209
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.ruoyi.management.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.management.domain.InventoriesSupplies;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
/**
 * <p>
 * 物资盘点 Mapper 接口
 * </p>
 *
 * @author hjl
 * @since 2024-07-01
 */
@Mapper
public interface InventoriesSuppliesMapper extends BaseMapper<InventoriesSupplies> {
 
    InventoriesSupplies getById1(@Param("id") Long suppliesId);
 
}