ny
昨天 b6f169fe43a2b13f351aefc152374fc7f0bc8cb7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package jnpf.base.model.module;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
@Data
@Schema(description = "菜单选择对象")
public class ModuleSelectorVo {
    @Schema(description = "菜单id")
    private String id;
    @Schema(description = "应用名称")
    private String systemName;
    @Schema(description = "菜单名称")
    private String fullName;
    @Schema(description = "菜单编码")
    private String enCode;
    @Schema(description = "类型")
    private Integer type;
    @Schema(description = "类型名称")
    private String typeName;
 
    @Schema(description = "类型属性信息")
    private String propertyJson;
    @Schema(description = "表单id")
    private String formId;
    @Schema(description = "流程id")
    private String flowId;
}