PC 版本管理
This commit is contained in:
@@ -0,0 +1,115 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.activerecord.Model;
|
||||
|
||||
/**
|
||||
* 版本管理(TbVersion)表实体类
|
||||
*
|
||||
* @author ww
|
||||
* @since 2024-08-28 11:22:09
|
||||
*/
|
||||
@SuppressWarnings("serial")
|
||||
public class TbVersion extends Model<TbVersion> {
|
||||
|
||||
private Integer id;
|
||||
//PC;APP;
|
||||
private String source;
|
||||
//ios;android;
|
||||
private String type;
|
||||
//版本号
|
||||
private String version;
|
||||
//是否强制更新 0:否 1:是
|
||||
private Integer isUp;
|
||||
//更新提示内容
|
||||
private String message;
|
||||
//下载地址
|
||||
private String url;
|
||||
//选中 0否 1是
|
||||
private Integer sel;
|
||||
//创建时间
|
||||
private Long createdAt;
|
||||
//更新时间
|
||||
private Long updatedAt;
|
||||
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getSource() {
|
||||
return source;
|
||||
}
|
||||
|
||||
public void setSource(String source) {
|
||||
this.source = source;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getVersion() {
|
||||
return version;
|
||||
}
|
||||
|
||||
public void setVersion(String version) {
|
||||
this.version = version;
|
||||
}
|
||||
|
||||
public Integer getIsUp() {
|
||||
return isUp;
|
||||
}
|
||||
|
||||
public void setIsUp(Integer isUp) {
|
||||
this.isUp = isUp;
|
||||
}
|
||||
|
||||
public String getMessage() {
|
||||
return message;
|
||||
}
|
||||
|
||||
public void setMessage(String message) {
|
||||
this.message = message;
|
||||
}
|
||||
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
|
||||
public void setUrl(String url) {
|
||||
this.url = url;
|
||||
}
|
||||
|
||||
public Integer getSel() {
|
||||
return sel;
|
||||
}
|
||||
|
||||
public void setSel(Integer sel) {
|
||||
this.sel = sel;
|
||||
}
|
||||
|
||||
public Long getCreatedAt() {
|
||||
return createdAt;
|
||||
}
|
||||
|
||||
public void setCreatedAt(Long createdAt) {
|
||||
this.createdAt = createdAt;
|
||||
}
|
||||
|
||||
public Long getUpdatedAt() {
|
||||
return updatedAt;
|
||||
}
|
||||
|
||||
public void setUpdatedAt(Long updatedAt) {
|
||||
this.updatedAt = updatedAt;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user