5 changed files with 89 additions and 6 deletions
@ -0,0 +1,32 @@ |
|||
package com.yxt.anrui.scm.api.scmvehicleexamine; |
|||
|
|||
import com.yxt.common.core.vo.Vo; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @Author dimengzhe |
|||
* @Date 2022/8/29 9:22 |
|||
* @Description |
|||
*/ |
|||
@Data |
|||
public class AppScmVehicleVersionVo implements Vo { |
|||
private static final long serialVersionUID = -4041552955974494273L; |
|||
|
|||
@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.terminal.api.supplychain.scmvehicleexamine; |
|||
|
|||
import com.yxt.common.core.vo.Vo; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @Author dimengzhe |
|||
* @Date 2022/8/29 9:27 |
|||
* @Description |
|||
*/ |
|||
@Data |
|||
public class AppScmVehicleVo implements Vo { |
|||
private static final long serialVersionUID = -5802337580742368734L; |
|||
|
|||
@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