Skip to content

Commit

Permalink
downloadStatus type to Integer
Browse files Browse the repository at this point in the history
  • Loading branch information
blackstar-baba committed Aug 27, 2020
1 parent 4e3d435 commit 06e61e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class AppVersion implements Serializable {

private Integer status;

private String downloadStatus;
private Integer downloadStatus;


}
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
public interface AppVersionMapper extends BaseMapper<AppVersion> {

@Select({"<script>",
"select version from app_version",
"select version,download_status downloadStatus from app_version",
" where app_name = #{name}",
"</script>"})
List<AppVersion> getSimpleByAppName(String appName);
Expand Down

0 comments on commit 06e61e2

Please sign in to comment.