#
luxiaotao1123
2022-02-22 0c780a71262676dacde56cb4011f3c68f37a5cf8
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);
 
}