chen.lin
2 天以前 fae65149d147082517f9db75dc4647e9e3aa069b
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.MaterialWwOut;
import com.zy.asrs.mapper.MaterialWwOutMapper;
import com.zy.asrs.service.MaterialWwOutService;
import org.springframework.stereotype.Service;
 
@Service("materialWwOutService")
public class MaterialWwOutServiceImpl extends ServiceImpl<MaterialWwOutMapper, MaterialWwOut> implements MaterialWwOutService {
 
}