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