package com.gkhy.safePlatform.account.entity.app;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.io.Serializable;
|
import java.time.LocalDate;
|
import java.time.LocalDateTime;
|
|
@TableName("sys_app")
|
public class AppVersionInfo implements Serializable {
|
|
private static final long serialVersionUID = 2590706134767279376L;
|
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
private String name;
|
|
private String info;
|
|
private String customVersion;
|
|
private Integer version;
|
|
private Byte status;
|
|
private Byte appType;
|
|
private String objectName;
|
|
private LocalDateTime gmtCreate;
|
|
private Long createUid;
|
|
private String createUname;
|
|
private LocalDateTime gmtModified;
|
|
private Long modifiedUid;
|
|
private String modifiedUname;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getInfo() {
|
return info;
|
}
|
|
public void setInfo(String info) {
|
this.info = info;
|
}
|
|
public Integer getVersion() {
|
return version;
|
}
|
|
public void setVersion(Integer version) {
|
this.version = version;
|
}
|
|
public Byte getStatus() {
|
return status;
|
}
|
|
public void setStatus(Byte status) {
|
this.status = status;
|
}
|
|
public String getObjectName() {
|
return objectName;
|
}
|
|
public void setObjectName(String objectName) {
|
this.objectName = objectName;
|
}
|
|
public LocalDateTime getGmtCreate() {
|
return gmtCreate;
|
}
|
|
public void setGmtCreate(LocalDateTime gmtCreate) {
|
this.gmtCreate = gmtCreate;
|
}
|
|
public Long getCreateUid() {
|
return createUid;
|
}
|
|
public void setCreateUid(Long createUid) {
|
this.createUid = createUid;
|
}
|
|
public String getCreateUname() {
|
return createUname;
|
}
|
|
public void setCreateUname(String createUname) {
|
this.createUname = createUname;
|
}
|
|
public LocalDateTime getGmtModified() {
|
return gmtModified;
|
}
|
|
public void setGmtModified(LocalDateTime gmtModified) {
|
this.gmtModified = gmtModified;
|
}
|
|
public Long getModifiedUid() {
|
return modifiedUid;
|
}
|
|
public void setModifiedUid(Long modifiedUid) {
|
this.modifiedUid = modifiedUid;
|
}
|
|
public String getModifiedUname() {
|
return modifiedUname;
|
}
|
|
public void setModifiedUname(String modifiedUname) {
|
this.modifiedUname = modifiedUname;
|
}
|
|
public Byte getAppType() {
|
return appType;
|
}
|
|
public void setAppType(Byte appType) {
|
this.appType = appType;
|
}
|
|
public String getCustomVersion() {
|
return customVersion;
|
}
|
|
public void setCustomVersion(String customVersion) {
|
this.customVersion = customVersion;
|
}
|
}
|