feat: (feature/REQ-3167) 菜单详情增加ios,android的版本支持
This commit is contained in:
parent
6c6f51954f
commit
7c8fe795ba
@ -151,7 +151,9 @@ public class FeatureResourceDTO implements Serializable {
|
||||
|
||||
/**
|
||||
* 最低版本序列,主要支持版本灰度策略
|
||||
* 已经废弃,不准确,分ios,android有各自的版本支持
|
||||
*/
|
||||
@Deprecated
|
||||
private Integer version;
|
||||
|
||||
/**
|
||||
@ -163,4 +165,34 @@ public class FeatureResourceDTO implements Serializable {
|
||||
* 页面元素对象
|
||||
*/
|
||||
private List<PageElementBasicDTO> pageElements;
|
||||
|
||||
/**
|
||||
* ios 最低版本要求
|
||||
*/
|
||||
private Integer iosMinVersion;
|
||||
|
||||
/**
|
||||
* ios 最高版本要求
|
||||
*/
|
||||
private Integer iosMaxVersion;
|
||||
|
||||
/**
|
||||
* ios 是否开启最高版本要求:true-开启;false-关闭
|
||||
*/
|
||||
private Boolean iosMaxVersionEnabled;
|
||||
|
||||
/**
|
||||
* android 最低版本要求
|
||||
*/
|
||||
private Integer androidMinVersion;
|
||||
|
||||
/**
|
||||
* android 最高版本要求
|
||||
*/
|
||||
private Integer androidMaxVersion;
|
||||
|
||||
/**
|
||||
* android 是否开启最高版本要求:true-开启;false-关闭
|
||||
*/
|
||||
private Boolean androidMaxVersionEnabled;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user