#20230529 欣影管理平台拍照时间表代码

master
18616268358 2 years ago
parent a74f720c0b
commit 90f06480c8

@ -6,12 +6,13 @@ import java.io.Serializable;
@Data
public class TerminalApkInfoDto implements Serializable {
private Integer id;
private String name;
private String path;
private String version;
private static final long serialVersionUID = 1L;
}

@ -29,9 +29,6 @@ public class TerminalApkInfoListModel implements Serializable {
@Data
public static class ApkBean {
@ApiModelProperty(value = "APKid", example = "123456")
private Integer id;
@ApiModelProperty(value = "上传路径", example = "123456")
private String path;

@ -4,10 +4,9 @@
<resultMap id="ApkInfoMap" type="com.shxy.xymanager_common.dto.TerminalApkInfoDto">
<id column="id" jdbcType="INTEGER" property="id"/>
<result column="name" jdbcType="VARCHAR" property="name"/>
<result column="path" jdbcType="VARCHAR" property="path"/>
<result column="status" jdbcType="INTEGER" property="status"/>
<result column="version" jdbcType="VARCHAR" property="version"/>
</resultMap>
<insert id="insert" parameterType="com.shxy.xymanager_common.entity.TerminalUpload">
@ -17,7 +16,6 @@
<select id="selectAll" resultMap="ApkInfoMap">
select
id,
name,
path,
version

Loading…
Cancel
Save