rentaiming
2024-07-01 6e709b3daad18b6f146d042812a98d924640e956
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ruoyi.management.service.impl;
import com.ruoyi.management.domain.ManagementGoodsMaterials;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ruoyi.management.mapper.ManagementGoodsMaterialsMapper;
import com.ruoyi.management.service.ManagementGoodsMaterialsService;
import org.springframework.stereotype.Service;
 
/**
 * <p>
 * 仓库到物资的中间表 服务实现类
 * </p>
 *
 * @author hjl
 * @since 2024-07-01
 */
@Service
public class ManagementGoodsMaterialsServiceImpl extends ServiceImpl<ManagementGoodsMaterialsMapper, ManagementGoodsMaterials> implements ManagementGoodsMaterialsService {
 
}