东安澄江吧 关注:848贴子:39,253
  • 29回复贴,共1

=小时代=8.8小时代求组队

只看楼主收藏回复

RT


IP属地:湖南来自手机贴吧1楼2013-08-08 07:00回复
    去么去么 下午一起去


    IP属地:湖南来自手机贴吧2楼2013-08-08 07:01
    回复
      请我就去。


      IP属地:湖南来自Android客户端3楼2013-08-08 07:21
      回复
        直接果断。


        IP属地:湖南来自Android客户端4楼2013-08-08 07:22
        收起回复
          给买票吗


          5楼2013-08-08 08:09
          收起回复
            小时代不是百度可以搜了么。。。(我不会告诉你我升九了)


            IP属地:广东6楼2013-08-08 10:23
            收起回复
              没钱没爱


              8楼2013-08-08 13:02
              收起回复
                上午看完了,估计应该还有小时代3,结局很High


                来自Android客户端9楼2013-08-08 13:37
                收起回复
                  去哪看


                  10楼2013-08-08 17:54
                  收起回复
                    package com.sinosoft.lis.DemandDev;
                    import org.apache.log4j.Logger;
                    import com.sinosoft.lis.db.ZRDemandInfoDB;import com.sinosoft.lis.pubfun.GlobalInput;import com.sinosoft.lis.pubfun.PubFun;import com.sinosoft.lis.schema.ZRDemandInfoSchema;import com.sinosoft.lis.tb.bpo.BPOPub;import com.sinosoft.utility.CError;import com.sinosoft.utility.CErrors;import com.sinosoft.utility.TransferData;import com.sinosoft.utility.VData;
                    public class DemandQueryDevBL {/** * 错误信息 */public CErrors mErrors=new CErrors();/** * 结果 */private VData mResult=new VData();/** * 输入的值 */private VData mInputData=new VData();/** * 给Schema对象赋值 */private GlobalInput mGlobalInput=new GlobalInput();/** * 日志 */private static final Logger mLogger = Logger.getLogger(DemandQueryDevBL.class);public DemandQueryDevBL(){}/** 需求编码 */ private String mDemdNo=new String(); /** 提出部门 */ private String mInDept=new String(); /** 提出人 */ private String mInPerson=new String(); /** 原始提出分公司 */ private String mOriginalInCompany=new String(); /** 原始提出人 */ private String mOriginalInPerson=new String(); /** 提出时间 */ private String mInDate=new String(); /** 所属系统 */ private String mBelongSystem=new String(); /** 所属模块 */ private String mModule=new String(); /** 子模块 */ private String mInnerModule=new String(); /** 需求内容简称 */ private String mDemdAbbReviation=new String(); /** 需求内容 */ private String mDemddIscription=new String(); /** 备注 */ private String mRemark=new String(); /** 需求状态 */ private String mDemdstate=new String(); /** 开发负责人 */ private String mProgrammer=new String(); /** IT负责人 */ private String mITPerson=new String(); /** 紧急需求 */ private String mEmergencyFlag=new String(); /** 关联需求号 */ private String mAssNo=new String(); /** 确认时间 */ private String mConfirmdate=new String(); /** 需求预计工作量 */ private String mPlanDemdcostTime=new String(); /** 开发预计工作量 */ private String mPlanCodecostTime=new String(); /** 测试预计工作量 */ private String mPlanTestcostTime=new String(); /** 预计DAT更新时间 */ private String mPlanUpdateDatDate=new String(); /** 预计UAT更新时间 */ private String mPlanUpdateUatDate=new String(); /** 更新DAT时间 */ private String mUpdateDatData=new String(); /** 更新UAT时间 */ private String mUpdateUatData=new String(); /** 需求实际工作量 */ private String mDemdcostTime=new String(); /** 开发实际工作量 */ private String mCodecostTime=new String(); /** 测试实际工作量 */ private String mTestcostTime=new String(); /** 开发单是否打印 */ private String mDevelopisPrint=new String(); /** 需求转交IT */ private String mDemdisDeliverIT=new String(); /** 呈批件是否收到 */ private String mPaperFlag=new String(); /** MODIFYDATE */ private String mModifyDate=new String(); /** MODIFYTIME */ private String mModifyTime=new String();public VData getMResult() {return mResult;}/** * 增删改查数据处理 */public boolean subimitData(VData tInputData){this.mInputData=tInputData;if(!getInputData(tInputData)){return false;}if(!dealData()){return false;}return true;}private boolean getInputData(VData tInputData){TransferData tTransferData=(TransferData)mInputData.getObjectByObjectName("TransferData", 0);mGlobalInput = (GlobalInput) tInputData.getObjectByObjectName("GlobalInput", 0);mModifyDate=PubFun.getCurrentDate();mModifyTime=PubFun.getCurrentTime(); mDemdNo=(String)tTransferData.getValueByName("uDemdNo");mEmergencyFlag=(String)tTransferData.getValueByName("uEmergencyFlag");mInPerson=(String)tTransferData.getValueByName("uInPerson");mInDept=(String)tTransferData.getValueByName("uInDept");mOriginalInPerson=(String)tTransferData.getValueByName("uOriginalInPerson");mOriginalInCompany=(String)tTransferData.getValueByName("uOriginalInCompany");mBelongSystem=(String)tTransferData.getValueByName("uBelongSystem");mModule=(String)tTransferData.getValueByName("uModule");mInnerModule=(String)tTransferData.getValueByName("uInnerModule");mITPerson=(String)tTransferData.getValueByName("uITPerson");mDemdAbbReviation=(String)tTransferData.getValueByName("uDemdAbbReviation");mProgrammer=(String)tTransferData.getValueByName("uProgrammer");mDemddIscription=(String)tTransferData.getValueByName("uDemddIscription");mInDate=(String)tTransferData.getValueByName("uINDATE");mDemdstate=(String)tTransferData.getValueByName("uDemandState");mConfirmdate=(String)tTransferData.getValueByName("uConfirmDate");mPlanDemdcostTime=(String)tTransferData.getValueByName("uPlanDemamdcostTime");mPlanCodecostTime=(String)tTransferData.getValueByName("uPlancodecostTime");mPlanTestcostTime=(String)tTransferData.getValueByName("uPlantestCostTime");mPlanUpdateDatDate=(String)tTransferData.getValueByName("uPlanupdateDatDate");mPlanUpdateUatDate=(String)tTransferData.getValueByName("uPlanupdateUatDate");mDemdisDeliverIT=(String)tTransferData.getValueByName("uDemdIsDeliverIT");mDevelopisPrint=(String)tTransferData.getValueByName("uDevelopIsPrint");


                    IP属地:湖南11楼2013-08-09 13:52
                    回复
                      mPaperFlag=(String)tTransferData.getValueByName("uPaperFlag");if(tTransferData.getValueByName("uRemark")!=null){if(!tTransferData.getValueByName("uRemark").equals("")||tTransferData.getValueByName("uRemark")!=""){mRemark=(String)tTransferData.getValueByName("uRemark");}}if(tTransferData.getValueByName("uAssNo")!=null){if(!tTransferData.getValueByName("uAssNo").equals("")||tTransferData.getValueByName("uAssNo")!=""){mAssNo=(String)tTransferData.getValueByName("uAssNo");}}if(tTransferData.getValueByName("uCodecostTime")!=null){if(!tTransferData.getValueByName("uCodecostTime").equals("")||tTransferData.getValueByName("uCodecostTime")!=""){mCodecostTime=(String)tTransferData.getValueByName("uCodecostTime");}}if(tTransferData.getValueByName("uTestcostTime")!=null){if(!tTransferData.getValueByName("uTestcostTime").equals("")||tTransferData.getValueByName("uTestcostTime")!=""){mTestcostTime=(String)tTransferData.getValueByName("uTestcostTime");}}if(tTransferData.getValueByName("uDemdcostTime")!=null){if(!tTransferData.getValueByName("uDemdcostTime").equals("")||tTransferData.getValueByName("uDemdcostTime")!=""){mDemdcostTime=(String)tTransferData.getValueByName("uDemdcostTime");}}if(tTransferData.getValueByName("uUpdateDatDate")!=null){if(!tTransferData.getValueByName("uUpdateDatDate").equals("")||tTransferData.getValueByName("uUpdateDatDate")!=""){mUpdateDatData=(String)tTransferData.getValueByName("uUpdateDatDate");}}if(tTransferData.getValueByName("uUpdateUatDate")!=null){if(!tTransferData.getValueByName("uUpdateUatDate").equals("")||tTransferData.getValueByName("uUpdateUatDate")!=""){mUpdateUatData=(String)tTransferData.getValueByName("uUpDateUatData");}}
                      mGlobalInput.setSchema((GlobalInput)mInputData.getObjectByObjectName("GlobalInput", 0));return true;}private boolean dealData(){boolean flag = false;ZRDemandInfoDB tZRDemandInfoDB = new ZRDemandInfoDB();ZRDemandInfoSchema tZRDemandInfoSchema = new ZRDemandInfoSchema();dataSchema(tZRDemandInfoDB,tZRDemandInfoSchema);try {if(tZRDemandInfoDB.update() && tZRDemandInfoDB.getInfo()){flag = true;}else{CError tError = new CError();tError.moduleName = "tZRDemandInfo";tError.functionName = "submitData";tError.errorMessage = "数据处理失败,请您仔细核对数据是否重复插入,或超出输入字数上限!";this.mErrors.addOneError(tError);flag = false;}}catch (Exception e) {e.printStackTrace();CError tError = new CError();tError.moduleName = "tZRDemandInfo";tError.functionName = "submitData";tError.errorMessage = "数据处理失败,请您仔细核对数据的正确性!";this.mErrors.addOneError(tError);flag = false;}return flag;}/** * 给Schema对象赋值 */public void dataSchema(ZRDemandInfoDB tZRDemandInfoDB,ZRDemandInfoSchema tZRDemandInfoSchema){tZRDemandInfoSchema.setDEMDNO(mDemdNo);tZRDemandInfoSchema.setEMERGENCYFLAG(mEmergencyFlag);tZRDemandInfoSchema.setINPERSON(mInPerson);tZRDemandInfoSchema.setINDEPT(mInDept);tZRDemandInfoSchema.setORIGINALINPERSON(mOriginalInPerson);tZRDemandInfoSchema.setORIGINALINCOMPANY(mOriginalInCompany);tZRDemandInfoSchema.setBELONGSYSTEM(mBelongSystem);tZRDemandInfoSchema.setMODULE(mModule);tZRDemandInfoSchema.setINNERMODULE(mInnerModule);tZRDemandInfoSchema.setITPERSON(mITPerson);tZRDemandInfoSchema.setDEMDABBREVIATION(mDemdAbbReviation);tZRDemandInfoSchema.setPROGRAMMER(mProgrammer);tZRDemandInfoSchema.setDEMDDISCRIPTION(mDemddIscription);tZRDemandInfoSchema.setINDATE(mInDate);tZRDemandInfoSchema.setDEMDSTATE(mDemdstate);tZRDemandInfoSchema.setCONFIRMDATE(mConfirmdate);tZRDemandInfoSchema.setPLANDEMDCOSTTIME(mPlanDemdcostTime);tZRDemandInfoSchema.setPLANCODECOSTTIME(mPlanCodecostTime);tZRDemandInfoSchema.setPLANTESTCOSTTIME(mPlanTestcostTime);tZRDemandInfoSchema.setPLANUPDATEDATDATE(mPlanUpdateDatDate);tZRDemandInfoSchema.setPLANUPDATEUATDATE(mPlanUpdateUatDate);tZRDemandInfoSchema.setDEMDISDELIVERIT(mDemdisDeliverIT);tZRDemandInfoSchema.setDEVELOPISPRINT(mDevelopisPrint);tZRDemandInfoSchema.setPAPERFLAG(mPaperFlag);tZRDemandInfoSchema.setMODIFYDATE(mModifyDate);tZRDemandInfoSchema.setMODIFYTIME(mModifyTime); if(mAssNo!=null&&!mAssNo.equals("")){tZRDemandInfoSchema.setASSNO(mAssNo);}if(mRemark!=null&&!mRemark.equals("")){tZRDemandInfoSchema.setREMARK(mRemark);}if(mCodecostTime!=null&&!mCodecostTime.equals("")){tZRDemandInfoSchema.setCODECOSTTIME(mCodecostTime);}if(mTestcostTime!=null&&!mTestcostTime.equals("")){tZRDemandInfoSchema.setTESTCOSTTIME(mTestcostTime);}if(mDemdcostTime!=null&&!mDemdcostTime.equals("")){tZRDemandInfoSchema.setDEMDCOSTTIME(mDemdcostTime);}if(mUpdateDatData!=null&&!mUpdateDatData.equals("")){tZRDemandInfoSchema.setUPDATEDATDATE(mUpdateDatData);}if(mUpdateUatData!=null&&!mUpdateUatData.equals("")){tZRDemandInfoSchema.setUPDATEDATDATE(mUpdateUatData);}tZRDemandInfoDB.setSchema(tZRDemandInfoSchema);} }


                      IP属地:湖南12楼2013-08-09 13:52
                      收起回复
                        郭导这次只拍了1 2


                        IP属地:广东来自Android客户端13楼2013-08-09 14:11
                        收起回复