feat: (feature/REQ-3167) 前端资源列表增加ios,android版本字段返回

This commit is contained in:
李龙 2024-11-20 13:49:51 +08:00
parent c1fbb6dba2
commit 6c6f51954f
2 changed files with 34 additions and 2 deletions

View File

@ -64,7 +64,9 @@ public class PageElementResp {
/**
* 客户端版本号
* 已经废弃
*/
@Deprecated
private Integer version;
/**
@ -95,6 +97,36 @@ public class PageElementResp {
/** android挑战地址 **/
private String androidRouterUrl;
/**
* 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;
@Data
@Builder
@NoArgsConstructor

View File

@ -137,12 +137,12 @@ public class SaasPageElement extends BaseEntity<SaasPageElement> {
/**
* 最低版本要求
*/
private Long minVersion;
private Integer minVersion;
/**
* 最高版本要求
*/
private Long maxVersion;
private Integer maxVersion;
/**
* 是否开启最高版本要求:true-开启false-关闭