| | |
| | | package org.jeecg.modules.dnc.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.jeecg.modules.dnc.entity.DocInfo; |
| | | import org.jeecg.modules.dnc.entity.ProcessStream; |
| | | import org.jeecg.modules.dnc.request.ProcessStreamRequest; |
| | | import org.jeecg.modules.dnc.request.TreeInfoRequest; |
| | | import org.jeecg.modules.system.entity.MdcProduction; |
| | | import org.jeecg.modules.system.entity.SysUser; |
| | | |
| | |
| | | * @return |
| | | */ |
| | | boolean assignRemoveUser(ProcessStream processStream, Collection<SysUser> userList); |
| | | |
| | | /** |
| | | * 通过工序号、工序名称等查询对应电子样板 |
| | | * @param treeInfoRequest |
| | | * @return |
| | | */ |
| | | List<DocInfo> getByProcessStreamOtherFile(TreeInfoRequest treeInfoRequest); |
| | | |
| | | /** |
| | | * 通过工序号、工序名称等查询对应NC文件 |
| | | * NC文件存在设备类下面 |
| | | * @param treeInfoRequest |
| | | * @return |
| | | */ |
| | | List<DocInfo> getByProcessStreamNCFile(TreeInfoRequest treeInfoRequest); |
| | | } |