d8d96876adabc5c2f084c1fb7a9c2cfb80745293.svn-base 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. package xin.glue.ui.B.B01;
  2. import com.posdata.glue.biz.activity.PosActivity;
  3. import com.posdata.glue.biz.constants.PosBizControlConstants;
  4. import com.posdata.glue.context.PosContext;
  5. import com.posdata.glue.dao.PosGenericDao;
  6. import com.posdata.glue.dao.vo.PosParameter;
  7. import com.posdata.glue.dao.vo.PosRowSet;
  8. public class FindComboData extends PosActivity
  9. {
  10. public String runActivity(PosContext context)
  11. {
  12. PosGenericDao dao = this.getDao("mesdao");
  13. PosRowSet result = null;
  14. result = dao.find("UIB010140_01.SELECT");
  15. context.put("ListResult_0", result);
  16. result = dao.find("UIB010140_13.SELECT");
  17. context.put("ListResult_1", result);
  18. result = dao.find("UIB010140_05.SELECT");
  19. context.put("ListResult_2", result);
  20. result = dao.find("UIB010140_06.SELECT");
  21. context.put("ListResult_3", result);
  22. result = dao.find("UIB010140_07.SELECT");
  23. context.put("ListResult_4", result);
  24. result = dao.find("UIB010140_10.SELECT");
  25. context.put("ListResult_5", result);
  26. result = dao.find("UIB010140_01.INITSELECT");
  27. context.put("SpecStlGrd", result);
  28. result = dao.find("UIB010140_02.INITSELECT");
  29. context.put("ListResult_6", result);
  30. result = dao.find("UIB010140_15.SELECT");//
  31. context.put("ListResult_7", result);
  32. return PosBizControlConstants.SUCCESS;
  33. }
  34. }