2 changed files with 35 additions and 0 deletions
@ -0,0 +1,32 @@ |
|||
package com.yxt.anrui.terminal.api.supplychain.companyShunting; |
|||
|
|||
import com.yxt.common.core.vo.Vo; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @Author dimengzhe |
|||
* @Date 2022/8/26 20:23 |
|||
* @Description |
|||
*/ |
|||
@Data |
|||
public class CompanyShutingVersionVo implements Vo { |
|||
private static final long serialVersionUID = -1626902109690426737L; |
|||
|
|||
@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