feat: (feature/REQ-3167) 菜单详情增加ios,android的版本支持

This commit is contained in:
李龙 2024-11-20 14:05:36 +08:00
parent 6c6f51954f
commit 7c8fe795ba

View File

@ -151,7 +151,9 @@ public class FeatureResourceDTO implements Serializable {
/**
* 最低版本序列,主要支持版本灰度策略
* 已经废弃不准确分iosandroid有各自的版本支持
*/
@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;
}