Groovy web console

subscribe to the feed Subscribe
to this
site

tag

Published 4 months ago by tag with tags promotionhead
Actions Execute script  ▶ Edit in console Back to console Show/hide line numbers View recent scripts
class PromotionHead{

String sku
String local


}

def promotionhead = new PromotionHead();
promotionhead.setSku("sku1")
promotionhead.setLocal("local1")


println promotionhead.getSku() + " " + promotionhead.getLocal()