|
@@ -3,12 +3,14 @@ package com.ym.mec.biz.dal.entity;
|
|
|
import lombok.Data;
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
/**
|
|
|
* 对应数据库表(app_version_info):
|
|
|
*/
|
|
|
-@Data
|
|
|
public class AppVersionInfoBak {
|
|
|
|
|
|
+ /** */
|
|
|
private Integer id;
|
|
|
|
|
|
/** 平台(andorid/ios) */
|
|
@@ -27,7 +29,7 @@ public class AppVersionInfoBak {
|
|
|
private String description;
|
|
|
|
|
|
/** 下载地址 */
|
|
|
- private String downloadUrl;
|
|
|
+ private byte[] downloadUrl;
|
|
|
|
|
|
/** 创建人 */
|
|
|
private Integer operatorId;
|
|
@@ -37,7 +39,95 @@ public class AppVersionInfoBak {
|
|
|
|
|
|
/** */
|
|
|
private java.util.Date createTime;
|
|
|
-
|
|
|
+
|
|
|
+ public boolean isForceUpdate() {
|
|
|
+ return isForceUpdate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setForceUpdate(boolean forceUpdate) {
|
|
|
+ isForceUpdate = forceUpdate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(Integer id){
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getId(){
|
|
|
+ return this.id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPlatform(String platform){
|
|
|
+ this.platform = platform;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPlatform(){
|
|
|
+ return this.platform;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setVersion(String version){
|
|
|
+ this.version = version;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getVersion(){
|
|
|
+ return this.version;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStatus(String status){
|
|
|
+ this.status = status;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getStatus(){
|
|
|
+ return this.status;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIsForceUpdate(boolean isForceUpdate){
|
|
|
+ this.isForceUpdate = isForceUpdate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public boolean getIsForceUpdate(){
|
|
|
+ return this.isForceUpdate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDescription(String description){
|
|
|
+ this.description = description;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDescription(){
|
|
|
+ return this.description;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDownloadUrl(byte[] downloadUrl){
|
|
|
+ this.downloadUrl = downloadUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public byte[] getDownloadUrl(){
|
|
|
+ return this.downloadUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOperatorId(Integer operatorId){
|
|
|
+ this.operatorId = operatorId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getOperatorId(){
|
|
|
+ return this.operatorId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUpdateTime(java.util.Date updateTime){
|
|
|
+ this.updateTime = updateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public java.util.Date getUpdateTime(){
|
|
|
+ return this.updateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreateTime(java.util.Date createTime){
|
|
|
+ this.createTime = createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public java.util.Date getCreateTime(){
|
|
|
+ return this.createTime;
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return ToStringBuilder.reflectionToString(this);
|