yun-zuoyi
zhang.xw 2 years ago
commit 7c214ef003

@ -274,7 +274,8 @@ public class BlockSoftSwitchEnumUtil {
*/ */
@JsonFormat(shape = JsonFormat.Shape.OBJECT) @JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum VERIFICATION_METHOD{ public enum VERIFICATION_METHOD{
IMPP_LOGIN(1,"IMPP登录"); IMPP_LOGIN(1,"IMPP登录"),
WEBSERVICE_AUTH(2,"webService认证");
private int value; private int value;
private String description; private String description;

@ -97,6 +97,10 @@ public class BfMenu extends BaseBean {
@ApiParam(value = "菜单状态") @ApiParam(value = "菜单状态")
private Integer menuStatus; private Integer menuStatus;
@Column(name = "SYS_MENU_ID")
@ApiParam(value = "系统菜单id")
private Long sysMenuId;
@Transient @Transient
@ApiParam(value = "菜单子集") @ApiParam(value = "菜单子集")
private List<BfMenu> bfMenuList; private List<BfMenu> bfMenuList;

@ -28,5 +28,9 @@ public class DingSendBatchRequestModel {
private String content; private String content;
@ApiModelProperty(value ="项目类型(默认andon)" , access ="项目类型(默认andon)") @ApiModelProperty(value ="项目类型(默认andon)" , access ="项目类型(默认andon)")
private String softType = "andon"; private String softType = "andon";
@ApiModelProperty(value ="按钮名称" , access ="按钮名称")
private String buttonName ;
@ApiModelProperty(value ="按钮跳转url" , access ="按钮跳转url")
private String buttonUrl;
} }

Loading…
Cancel
Save