package com.gkhy.safePlatform.account.model.dto.resp; import com.fasterxml.jackson.annotation.JsonFormat; import java.io.Serializable; import java.time.LocalDateTime; public class AppVersionRespDTO implements Serializable { private static final long serialVersionUID = -5756261076502560244L; private Long id; private String name; private String info; private String customVersion; private Integer version; private Byte status; private String statusDesc; private Byte appType; private String appTypeDesc; private String objectName; private String objectUrl; @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private LocalDateTime gmtCreate; private Long createUid; private String createUname; @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") 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 String getCustomVersion() { return customVersion; } public void setCustomVersion(String customVersion) { this.customVersion = customVersion; } 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 getStatusDesc() { return statusDesc; } public void setStatusDesc(String statusDesc) { this.statusDesc = statusDesc; } public Byte getAppType() { return appType; } public void setAppType(Byte appType) { this.appType = appType; } public String getAppTypeDesc() { return appTypeDesc; } public void setAppTypeDesc(String appTypeDesc) { this.appTypeDesc = appTypeDesc; } public String getObjectName() { return objectName; } public void setObjectName(String objectName) { this.objectName = objectName; } public String getObjectUrl() { return objectUrl; } public void setObjectUrl(String objectUrl) { this.objectUrl = objectUrl; } 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; } }