yun-zuoyi
gragon.xu 6 years ago
commit 2357bbcde6

@ -2036,13 +2036,13 @@ public class WmsEnumUtil {
*
*/
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum ORDER_IS_SN {
public enum IS_CHECK_SN {
IS_APPOINT_SN(1, "指定条码"), APPOINT_SN(2, "不指定条码");
private int value;
private String description;
ORDER_IS_SN(int value, String description) {
IS_CHECK_SN(int value, String description) {
this.value = value;
this.description = description;
}

@ -34,9 +34,9 @@ public class BfIntercept extends BaseBean {
@ApiParam(value ="拦截器名称")
private String interceptName;
// BlockFormEnumUtil.EXECUTION_TYPE
@Column(name="EXECUTE_MODE")
@ApiParam(value ="执行方式")
@JsonSerialize(using = ToStringSerializer.class)
private Integer executeMode;
@Column(name="EXECUTE_CONTENT")

@ -13,6 +13,8 @@ import org.hibernate.annotations.DynamicUpdate;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Table;
import javax.persistence.Transient;
import java.util.List;
/**
* @Description :
@ -76,4 +78,8 @@ public class BfMenu extends BaseBean {
@Column(name = "MENU_STATUS")
@ApiParam(value = "菜单状态")
private Integer menuStatus;
@Transient
@ApiParam(value = "菜单状态")
private List<BfMenu> bfMenuList;
}

@ -0,0 +1,43 @@
package cn.estsh.i3plus.pojo.model.form;
import cn.estsh.i3plus.pojo.form.bean.BfLayout;
import cn.estsh.i3plus.pojo.form.bean.BfMethod;
import cn.estsh.i3plus.pojo.form.bean.BfMethodDetail;
import io.swagger.annotations.ApiParam;
import lombok.Data;
import java.util.List;
/**
* @Description :
* <per>
* <br/>
* <br/>
* <br/>
* <br/>
* <br/>
* </per>
* @Reference :
* @Author : Adair Peng
* @CreateDate : 2019-04-17 10:35
* @Modify:
**/
@Data
public class FormModel {
// 表单功能
@ApiParam(value = "表单功能")
private BfMethod method;
// 布局
@ApiParam(value = "功能布局")
private BfLayout layout;
// 功能明细
@ApiParam(value = "功能明细")
private List<BfMethodDetail> methodDetailList;
// 元素
@ApiParam(value = "元素Model")
private List<ElementModel> elementModelList;
}
Loading…
Cancel
Save