| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- package xin.glue.ui.B.B01;
- import com.posdata.glue.biz.activity.PosActivity;
- import com.posdata.glue.biz.constants.PosBizControlConstants;
- import com.posdata.glue.context.PosContext;
- import com.posdata.glue.dao.PosGenericDao;
- import com.posdata.glue.dao.vo.PosParameter;
- import com.posdata.glue.dao.vo.PosRowSet;
- public class FindComboData extends PosActivity
- {
- public String runActivity(PosContext context)
- {
- PosGenericDao dao = this.getDao("mesdao");
- PosRowSet result = null;
-
- result = dao.find("UIB010140_01.SELECT");
- context.put("ListResult_0", result);
-
- result = dao.find("UIB010140_13.SELECT");
- context.put("ListResult_1", result);
-
- result = dao.find("UIB010140_05.SELECT");
- context.put("ListResult_2", result);
-
- result = dao.find("UIB010140_06.SELECT");
- context.put("ListResult_3", result);
-
- result = dao.find("UIB010140_07.SELECT");
- context.put("ListResult_4", result);
-
- result = dao.find("UIB010140_10.SELECT");
- context.put("ListResult_5", result);
-
- result = dao.find("UIB010140_01.INITSELECT");
- context.put("SpecStlGrd", result);
-
- result = dao.find("UIB010140_02.INITSELECT");
- context.put("ListResult_6", result);
- result = dao.find("UIB010140_15.SELECT");//
- context.put("ListResult_7", result);
- return PosBizControlConstants.SUCCESS;
- }
- }
|