|
@@ -61,12 +61,14 @@ public class InitialRunner implements CommandLineRunner {
|
|
|
|
|
|
WindpowerstationExample windpowerstationExample=new WindpowerstationExample();
|
|
|
windpowerstationExample.setOrderByClause("ordernum ASC");
|
|
|
- windpowerstationExample.createCriteria().getAllCriteria();
|
|
|
+ windpowerstationExample.createCriteria().andIdNotLike("%_GDC").getAllCriteria();
|
|
|
wpls= windpowerstationService.selectByExample(windpowerstationExample);
|
|
|
|
|
|
+
|
|
|
+
|
|
|
ProjectExample projectExample=new ProjectExample();
|
|
|
projectExample.setOrderByClause("ordernum ASC");
|
|
|
- projectExample.createCriteria().getAllCriteria();
|
|
|
+ projectExample.createCriteria().andWindpowerstationidNotLike("%_GDC").getAllCriteria();
|
|
|
pjls= projectService.selectByExample(projectExample);
|
|
|
|
|
|
LineExample lineExample=new LineExample();
|