chen.lin
1 天以前 01175f85df1e8402ada5a30aacfeb18fa621e95e
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 {
 
}