| | |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.jeecg.common.api.vo.Result; |
| | | import org.jeecg.modules.dnc.entity.DocInfo; |
| | | import org.jeecg.modules.dnc.entity.ProcessSpecVersion; |
| | | import org.jeecg.modules.dnc.request.TreeInfoRequest; |
| | | import org.jeecg.modules.system.entity.MdcProduction; |
| | | import org.jeecg.modules.system.entity.SysUser; |
| | | |
| | |
| | | Result<?> getProcessSpecVersionCount(String processSpecId); |
| | | |
| | | /** |
| | | * 查询工艺规程版本下的工序与工步 |
| | | * @param processSpecVersionId |
| | | * 通过零件号、材质等查询对应电子样板 |
| | | * @param treeInfoRequest |
| | | * @return |
| | | */ |
| | | List<DocInfo> getByProcessSpecVersion(TreeInfoRequest treeInfoRequest); |
| | | |
| | | |
| | | boolean assignPermission(Object entity, Collection<SysUser> userList, boolean isAdd); |
| | | |
| | | boolean assignDepartPermission(Object entity, Collection<MdcProduction> departments, boolean isAdd); |
| | | } |