刘光辉
12 小时以前 34981c30a78e8bbd7791131059a9210f9928b62c
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
package jnpf.portal.model;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.util.List;
 
@Data
public class ReleaseModel {
    @Schema(description = "pc标识")
    private Integer pc;
    @Schema(description = "pc应用集合")
    private String pcSystemId;
    @Schema(description = "app标识")
    private Integer app;
    @Schema(description = "pc应用集合")
    private String appSystemId;
 
 
    @Schema(description = "app上级菜单")
    private List<String> appModuleParentId;
    @Schema(description = "pc上级菜单")
    private List<String> pcModuleParentId;
 
    @Schema(description = "发布选中平台" )
    private String platformRelease;
}