public override void LoadChildInfo()
        {
            JobInfoPushMessage job = this.Cur_JobInfo as JobInfoPushMessage;

            this.cbetdbtype.SelectedIndex = job.dbtype;
            this.txttstr.Text             = job.dbstring;
            this.txtweburl.Text           = job.weburl;
            this.txttokenurl.Text         = job.tokenweburl;
        }
        public override bool CollectChildJobInfo()
        {
            JobInfoPushMessage job = this.Cur_JobInfo as JobInfoPushMessage;

            job.dbtype      = this.cbetdbtype.SelectedIndex;
            job.dbstring    = this.txttstr.Text.Trim();
            job.weburl      = this.txtweburl.Text.Trim();
            job.tokenweburl = this.txttokenurl.Text.Trim();
            return(true);
        }