Пример #1
0
 public void setInfo(String info) {
   sqlMaker.setField("info", info, Field.TEXT);
   if (this.operate_mode.equals("edit")) {
     if (!this.getInfo().equals(info)) cf.add("info", this.info, info);
   }
   this.info = info;
 }
Пример #2
0
 public void setTime(String time) {
   sqlMaker.setField("time", time, Field.DATE);
   if (this.operate_mode.equals("edit")) {
     if (!this.getTime().equals(time)) cf.add("time", this.time, time);
   }
   this.time = time;
 }
Пример #3
0
 public void setMenuid(String menuid) {
   sqlMaker.setField("menuid", menuid, Field.TEXT);
   if (this.operate_mode.equals("edit")) {
     if (!this.getMenuid().equals(menuid)) cf.add("menuid", this.menuid, menuid);
   }
   this.menuid = menuid;
 }
Пример #4
0
 public void setJobname(String jobname) {
   sqlMaker.setField("jobname", jobname, Field.TEXT);
   if (this.operate_mode.equals("edit")) {
     if (!this.getJobname().equals(jobname)) cf.add("jobname", this.jobname, jobname);
   }
   this.jobname = jobname;
 }
Пример #5
0
 public void setMenuicon(String menuicon) {
   sqlMaker.setField("menuicon", menuicon, Field.TEXT);
   if (this.operate_mode.equals("edit")) {
     if (!this.getMenuicon().equals(menuicon)) cf.add("menuicon", this.menuicon, menuicon);
   }
   this.menuicon = menuicon;
 }
Пример #6
0
 public void setFilldate(String filldate) {
   sqlMaker.setField("filldate", filldate, Field.TEXT);
   if (this.operate_mode.equals("edit")) {
     if (!this.getFilldate().equals(filldate)) cf.add("filldate", this.filldate, filldate);
   }
   this.filldate = filldate;
 }
Пример #7
0
 public void setFilldbl2(String filldbl2) {
   sqlMaker.setField("filldbl2", filldbl2, Field.NUMBER);
   if (this.operate_mode.equals("edit")) {
     if (!this.getFilldbl2().equals(filldbl2)) cf.add("filldbl2", this.filldbl2, filldbl2);
   }
   this.filldbl2 = filldbl2;
 }
Пример #8
0
 public void setResid(String resid) {
   sqlMaker.setField("resid", resid, Field.TEXT);
   if (this.operate_mode.equals("edit")) {
     if (!this.getResid().equals(resid)) cf.add("resid", this.resid, resid);
   }
   this.resid = resid;
 }
Пример #9
0
 public void setFillstr50(String fillstr50) {
   sqlMaker.setField("fillstr50", fillstr50, Field.TEXT);
   if (this.operate_mode.equals("edit")) {
     if (!this.getFillstr50().equals(fillstr50)) cf.add("fillstr50", this.fillstr50, fillstr50);
   }
   this.fillstr50 = fillstr50;
 }
Пример #10
0
 public void setFillint1(String fillint1) {
   sqlMaker.setField("fillint1", fillint1, Field.NUMBER);
   if (this.operate_mode.equals("edit")) {
     if (!this.getFillint1().equals(fillint1)) cf.add("fillint1", this.fillint1, fillint1);
   }
   this.fillint1 = fillint1;
 }
Пример #11
0
 public void setOpenicon(String openicon) {
   sqlMaker.setField("openicon", openicon, Field.TEXT);
   if (this.operate_mode.equals("edit")) {
     if (!this.getOpenicon().equals(openicon)) cf.add("openicon", this.openicon, openicon);
   }
   this.openicon = openicon;
 }
Пример #12
0
 public void setLevelidx(String levelidx) {
   sqlMaker.setField("levelidx", levelidx, Field.NUMBER);
   if (this.operate_mode.equals("edit")) {
     if (!this.getLevelidx().equals(levelidx)) cf.add("levelidx", this.levelidx, levelidx);
   }
   this.levelidx = levelidx;
 }
Пример #13
0
 public void setJobid(int jobid) {
   sqlMaker.setField("jobid", "" + jobid, Field.NUMBER);
   if (this.operate_mode.equals("edit")) {
     if (this.getJobid() != jobid) cf.add("jobid", this.jobid + "", jobid + "");
   }
   this.jobid = jobid;
 }
Пример #14
0
 public void setMenulabel(String menulabel) {
   sqlMaker.setField("menulabel", menulabel, Field.TEXT);
   if (this.operate_mode.equals("edit")) {
     if (!this.getMenulabel().equals(menulabel)) cf.add("menulabel", this.menulabel, menulabel);
   }
   this.menulabel = menulabel;
 }
Пример #15
0
 public void setMenudesc(String menudesc) {
   sqlMaker.setField("menudesc", menudesc, Field.TEXT);
   if (this.operate_mode.equals("edit")) {
     if (!this.getMenudesc().equals(menudesc)) cf.add("menudesc", this.menudesc, menudesc);
   }
   this.menudesc = menudesc;
 }
Пример #16
0
 public void setIsleaf(String isleaf) {
   sqlMaker.setField("isleaf", isleaf, Field.NUMBER);
   if (this.operate_mode.equals("edit")) {
     if (!this.getIsleaf().equals(isleaf)) cf.add("isleaf", this.isleaf, isleaf);
   }
   this.isleaf = isleaf;
 }
Пример #17
0
 public void setWindowheight(String windowheight) {
   sqlMaker.setField("windowheight", windowheight, Field.NUMBER);
   if (this.operate_mode.equals("edit")) {
     if (!this.getWindowheight().equals(windowheight))
       cf.add("windowheight", this.windowheight, windowheight);
   }
   this.windowheight = windowheight;
 }
Пример #18
0
 public void setWindowwidth(String windowwidth) {
   sqlMaker.setField("windowwidth", windowwidth, Field.NUMBER);
   if (this.operate_mode.equals("edit")) {
     if (!this.getWindowwidth().equals(windowwidth))
       cf.add("windowwidth", this.windowwidth, windowwidth);
   }
   this.windowwidth = windowwidth;
 }
Пример #19
0
 public void setOpenwindow(String openwindow) {
   sqlMaker.setField("openwindow", openwindow, Field.TEXT);
   if (this.operate_mode.equals("edit")) {
     if (!this.getOpenwindow().equals(openwindow))
       cf.add("openwindow", this.openwindow, openwindow);
   }
   this.openwindow = openwindow;
 }
Пример #20
0
 public void setTargetmachine(String targetmachine) {
   sqlMaker.setField("targetmachine", targetmachine, Field.TEXT);
   if (this.operate_mode.equals("edit")) {
     if (!this.getTargetmachine().equals(targetmachine))
       cf.add("targetmachine", this.targetmachine, targetmachine);
   }
   this.targetmachine = targetmachine;
 }
Пример #21
0
 public void setParentmenuid(String parentmenuid) {
   sqlMaker.setField("parentmenuid", parentmenuid, Field.TEXT);
   if (this.operate_mode.equals("edit")) {
     if (!this.getParentmenuid().equals(parentmenuid))
       cf.add("parentmenuid", this.parentmenuid, parentmenuid);
   }
   this.parentmenuid = parentmenuid;
 }