add nFiled

This commit is contained in:
fanfuxiaoran 2014-03-12 10:12:47 +08:00
parent 70b3472913
commit 937ba579a0
2 changed files with 3 additions and 3 deletions

View File

@ -18,8 +18,9 @@ import javax.persistence.Table;
@Table(name = "methodParam")
public class MethodParam {
public static final int FIELD = 1;
public static final int TABLE = 1;
public static final int CHECKBOX = 1;
public static final int NFIELD = 2;
public static final int TABLE = 3;
public static final int CHECKBOX = 4;
private int id;
private Method method;
private String lable;

View File

@ -57,7 +57,6 @@ public class PluginControllerTest extends TestBase {
PluginResponseModel.class, httpResponse.getContent());
Assert.assertTrue(pluginResponseModel.isSuccess());
}
public PluginModel createOnePlugin() {
PluginModel plugin = new PluginModel();
MethodModel method = new MethodModel();