|
|
|
@ -24,12 +24,31 @@ public class ButtonDynamicModel {
|
|
|
|
|
@ApiParam("按钮代码")
|
|
|
|
|
private String buttonCode;
|
|
|
|
|
|
|
|
|
|
@ApiParam("调用类")
|
|
|
|
|
private String callClass;
|
|
|
|
|
@ApiParam("回调界面方法")
|
|
|
|
|
private String windowModuleBack;
|
|
|
|
|
|
|
|
|
|
public ButtonDynamicModel(Long id, String buttonName, String buttonCode) {
|
|
|
|
|
@ApiParam("界面编号")
|
|
|
|
|
private String windowNo;
|
|
|
|
|
|
|
|
|
|
@ApiParam("参数代码")
|
|
|
|
|
private String paramCode;
|
|
|
|
|
|
|
|
|
|
@ApiParam("参数值")
|
|
|
|
|
private String paramValue;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public ButtonDynamicModel(Long id, String buttonCode, String buttonName){
|
|
|
|
|
this.id = id;
|
|
|
|
|
this.buttonCode = buttonCode;
|
|
|
|
|
this.buttonName = buttonName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ButtonDynamicModel(Long id, String buttonCode, String windowNo, String windowModuleBack, String paramCode, String paramValue){
|
|
|
|
|
this.id = id;
|
|
|
|
|
this.buttonCode = buttonCode;
|
|
|
|
|
this.windowNo = windowNo;
|
|
|
|
|
this.windowModuleBack = windowModuleBack;
|
|
|
|
|
this.paramCode = paramCode;
|
|
|
|
|
this.paramValue = paramValue;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|