Innovator inn = this.getInnovator();
Item test = inn.newItem("test_work","add");
test.setProperty("test_require","123");
test=test.apply();
return this;
Innovator inn = this.getInnovator();
Item test = inn.newItem("test_work","get");
test.setProperty("id",this.getID());
test=test.apply();
return inn.newError(test.getProperty("test_require"));
Innovator inn = this.getInnovator();
string seq = this.getProperty("test_seq");
Item test = inn.newItem("test_work","edit");
test.setAttribute("where","[test_work].test_seq='"+seq+"'");
test.setProperty("test_in","12345678910");
test=test.apply();
return this;