|
|
|
@ -7,6 +7,7 @@ import com.spring.common.utils.PageUtils; |
|
|
|
import com.spring.modules.base.data.PlmBmPropertiesValueData; |
|
|
|
import com.spring.modules.base.data.PlmBmPropertiesValueHeaderData; |
|
|
|
import com.spring.modules.base.data.PlmPropertiesItemAvailableData; |
|
|
|
import com.spring.modules.base.entity.PlmBmPageBaseData; |
|
|
|
import com.spring.modules.base.entity.PlmBmPropertiesValueHeader; |
|
|
|
import com.spring.modules.base.entity.PlmPropertiesItemAvailable; |
|
|
|
import com.spring.modules.base.service.TransNoControlService; |
|
|
|
@ -328,4 +329,13 @@ public class TechnicalSpecificationServiceImpl implements TechnicalSpecification |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public String getBMPageBase(SearchBMData data){ |
|
|
|
List<PlmBmPageBaseData> result=technicalSpecificationMapper.getBMPageBase(data); |
|
|
|
String row=""; |
|
|
|
for (int i = 0; i < result.size(); i++) { |
|
|
|
row=row+result.get(i).getCodeNo()+";"; |
|
|
|
} |
|
|
|
return row; |
|
|
|
} |
|
|
|
} |