|
|
|
@ -9,6 +9,7 @@ import com.spring.modules.factory.entity.vo.SiteVo; |
|
|
|
import com.spring.modules.factory.service.SiteService; |
|
|
|
import com.spring.modules.project.data.*; |
|
|
|
import com.spring.modules.project.entity.PlmProjectInfo; |
|
|
|
import com.spring.modules.project.entity.PlmProjectPart; |
|
|
|
import com.spring.modules.project.service.ProjectService; |
|
|
|
import com.spring.modules.sampleManagement.entity.BiAddress; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
@ -306,4 +307,11 @@ public class ProjectController { |
|
|
|
List<PlmProjectInfoData> list = projectService.queryProject(project); |
|
|
|
return R.ok().put("rows", list); |
|
|
|
} |
|
|
|
|
|
|
|
@PostMapping(value="/getProjectPartNowBm") |
|
|
|
@ResponseBody |
|
|
|
public R getProjectPartNowBm(@RequestBody PlmProjectPart part){ |
|
|
|
List<PlmProjectPartData> list = projectService.getProjectPartNewBm(part); |
|
|
|
return R.ok().put("rows", list); |
|
|
|
} |
|
|
|
} |