10 changed files with 325 additions and 205 deletions
@ -0,0 +1,32 @@ |
|||
package com.yxt.anrui.base.api.baseinternalpurchase; |
|||
|
|||
import com.yxt.common.core.vo.Vo; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @Author dimengzhe |
|||
* @Date 2022/8/26 10:51 |
|||
* @Description |
|||
*/ |
|||
@Data |
|||
public class AppVehicleVersionVo implements Vo { |
|||
private static final long serialVersionUID = -2662961586728421196L; |
|||
|
|||
@ApiModelProperty("版本编码") |
|||
private Integer moduleVersion; |
|||
|
|||
@ApiModelProperty("apk下载地址") |
|||
private String path; |
|||
|
|||
@ApiModelProperty("0.内置Activity 1.内置WebView 2.RePlugin插件") |
|||
private String type; |
|||
|
|||
@ApiModelProperty("插件名称") |
|||
private String modulePluginName; |
|||
|
|||
@ApiModelProperty("地址") |
|||
private String moduleAction; |
|||
|
|||
private String json; |
|||
} |
@ -0,0 +1,32 @@ |
|||
package com.yxt.anrui.portal.api.appsubsetversion; |
|||
|
|||
import com.yxt.common.core.vo.Vo; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @Author dimengzhe |
|||
* @Date 2022/8/26 10:25 |
|||
* @Description |
|||
*/ |
|||
@Data |
|||
public class AppSubVersionVo implements Vo { |
|||
private static final long serialVersionUID = 8313504810132137065L; |
|||
|
|||
@ApiModelProperty("版本编码") |
|||
private Integer moduleVersion; |
|||
|
|||
@ApiModelProperty("apk下载地址") |
|||
private String path; |
|||
|
|||
@ApiModelProperty("0.内置Activity 1.内置WebView 2.RePlugin插件") |
|||
private String type; |
|||
|
|||
@ApiModelProperty("插件名称") |
|||
private String modulePluginName; |
|||
|
|||
@ApiModelProperty("地址") |
|||
private String moduleAction; |
|||
|
|||
private String json; |
|||
} |
Loading…
Reference in new issue