工步调度业务完善
parent
f333718801
commit
038484e7ac
@ -0,0 +1,17 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.pcn.model;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class AttrBean implements Serializable {
|
||||||
|
|
||||||
|
@ApiParam("属性名称")
|
||||||
|
private String attrName;
|
||||||
|
|
||||||
|
@ApiParam("属性名称别名")
|
||||||
|
private String attrNameAlias;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,19 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.pcn.model;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class ButtonBean implements Serializable {
|
||||||
|
@ApiParam(value = "按钮名称")
|
||||||
|
private String buttonName;
|
||||||
|
|
||||||
|
// 执行类方法,sql,或者标记
|
||||||
|
@ApiParam(value = "执行内容")
|
||||||
|
private String methodContent;
|
||||||
|
|
||||||
|
@ApiParam(value = "按钮描述")
|
||||||
|
private String buttonDesc;
|
||||||
|
}
|
Loading…
Reference in New Issue