package xin.glue.ui.B.B02; 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.vo.PosParameter; import com.posdata.glue.dao.vo.PosRowSet; /** * * @Description {界面ID:UIB020130} * @author 梅贵平{meiguiping} * @date 2008-11-5 上午08:40:05 * @JDK Version jdk1.4.2 */ public class SaveLotDscTime extends PosActivity { public String runActivity(PosContext context) { String[] DTime = (String[])context.get("DTime");//获得当前时间 String[]SMP_NO = (String[])context.get("SMP_NO");//获得试片号 String[]SMP_CUT_LOC = (String[])context.get("SMP_CUT_LOC");//试片位置 PosParameter param = new PosParameter(); param.setWhereClauseParameter(0, DTime[0]); param.setWhereClauseParameter(1, SMP_NO[0]); param.setWhereClauseParameter(2, SMP_CUT_LOC[0]); this.getDao("mesdao").update("UIB020130_02.UPDATE", param); return PosBizControlConstants.SUCCESS; } }