...
|
...
|
@@ -3084,4 +3084,14 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService, ApplicationCon |
|
|
public void setApplicationContext(ApplicationContext applicationContext) {
|
|
|
this.applicationContext = applicationContext;
|
|
|
}
|
|
|
|
|
|
// 查询鉴定室列表
|
|
|
public List<IdentifyCenterResp> queryIdentifyCenter() {
|
|
|
IdentifyCenterEnum[] values = IdentifyCenterEnum.values();
|
|
|
List<IdentifyCenterResp> resps = Lists.newArrayList();
|
|
|
for (IdentifyCenterEnum item : values) {
|
|
|
resps.add(new IdentifyCenterResp(item.getCode(), item.getName(), item.getDesc(), item.getText()));
|
|
|
}
|
|
|
return resps;
|
|
|
}
|
|
|
} |
...
|
...
|
|