自动化立体仓库 - WMS系统
#
mrzhssss
2022-12-10 2db78e156c2bb8778be5da65471f0408fbf2187b
1
2
3
4
5
6
7
8
9
10
package com.zy.asrs.service;
 
import com.zy.asrs.entity.DocType;
import com.baomidou.mybatisplus.service.IService;
 
public interface DocTypeService extends IService<DocType> {
 
    DocType selectOrAdd(String docName, Boolean pakin);
 
}