#
luxiaotao1123
2022-03-11 1dfee1c05a942b29f005d9388d984d4969a020ef
1
2
3
4
5
6
7
8
9
10
package zy.cloud.wms.manager.service;
 
import zy.cloud.wms.manager.entity.DocType;
import com.baomidou.mybatisplus.service.IService;
 
public interface DocTypeService extends IService<DocType> {
 
    DocType selectByNumAndHost(Long docType, Long hostId);
 
}