chen.lin
2026-02-02 359a0d155942c6f31fe80a8dfad16efe13e982ea
1
2
3
4
5
6
7
8
9
10
11
12
package com.zy.asrs.service.impl;
 
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.zy.asrs.entity.MaterialReceive;
import com.zy.asrs.mapper.MaterialReceiveMapper;
import com.zy.asrs.service.MaterialReceiveService;
import org.springframework.stereotype.Service;
 
@Service("materialReceiveService")
public class MaterialReceiveServiceImpl extends ServiceImpl<MaterialReceiveMapper, MaterialReceive> implements MaterialReceiveService {
 
}