#
luxiaotao1123
2021-08-08 4f1abba02bec2a86e4a34d6ffbd65f7a92c3f659
1
2
3
4
5
6
7
8
9
10
11
12
package zy.cloud.wms.manager.service.impl;
 
import zy.cloud.wms.manager.mapper.DocTypeMapper;
import zy.cloud.wms.manager.entity.DocType;
import zy.cloud.wms.manager.service.DocTypeService;
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
@Service("docTypeService")
public class DocTypeServiceImpl extends ServiceImpl<DocTypeMapper, DocType> implements DocTypeService {
 
}