123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628 |
- package com.miniframe.model.system;
- import com.miniframe.system.MiniserviceBaseModel;
- import java.io.Serializable;
- import java.math.BigDecimal;
- import java.util.Date;
- import javax.persistence.*;
- @Table(name = "v_file_block")
- public class VFileBlock extends MiniserviceBaseModel implements Serializable {
- @Column(name = "block_id")
- private String blockId;
- private String hashcode;
- private String uid;
- @Column(name = "block_addr")
- private String blockAddr;
- @Column(name = "block_height")
- private Integer blockHeight;
- @Column(name = "block_txid")
- private String blockTxid;
- @Column(name = "block_busiid")
- private String blockBusiid;
- @Column(name = "upchain_switch")
- private String upchainSwitch;
- @Column(name = "block_create_time")
- private Date blockCreateTime;
- @Column(name = "block_update_time")
- private Date blockUpdateTime;
- @Column(name = "block_timestamp")
- private BigDecimal blockTimestamp;
- @Column(name = "block_hash_code")
- private String blockHashCode;
- @Column(name = "block_file_id")
- private String blockFileId;
- private String id;
- private String parentid;
- private String storageid;
- private String isdir;
- private Date lasttime;
- private String remarks;
- private String filepath;
- private String filetype;
- private String filetimelength;
- private BigDecimal filesize;
- private String filename;
- @Column(name = "legal_letter_apply_msg")
- private String legalLetterApplyMsg;
- @Column(name = "notarization_apply_msg")
- private String notarizationApplyMsg;
- @Column(name = "legal_letter_apply_time")
- private Date legalLetterApplyTime;
- @Column(name = "notarization_apply_time")
- private Date notarizationApplyTime;
- @Column(name = "legal_letter_file_id")
- private String legalLetterFileId;
- @Column(name = "notarization_file_id")
- private String notarizationFileId;
- @Column(name = "legal_letter_file_time")
- private Date legalLetterFileTime;
- @Column(name = "notarization_file_time")
- private Date notarizationFileTime;
- @Column(name = "legal_letter_apply_status")
- private String legalLetterApplyStatus;
- @Column(name = "notarization_apply_status")
- private String notarizationApplyStatus;
- @Column(name = "legal_letter_apply_uid")
- private String legalLetterApplyUid;
- @Column(name = "notarization_apply_uid")
- private String notarizationApplyUid;
- @Column(name = "link_id")
- private String linkId;
- private static final long serialVersionUID = 1L;
- /**
- * @return block_id
- */
- public String getBlockId() {
- return blockId;
- }
- /**
- * @param blockId
- */
- public void setBlockId(String blockId) {
- this.blockId = blockId == null ? null : blockId.trim();
- }
- /**
- * @return hashcode
- */
- public String getHashcode() {
- return hashcode;
- }
- /**
- * @param hashcode
- */
- public void setHashcode(String hashcode) {
- this.hashcode = hashcode == null ? null : hashcode.trim();
- }
- /**
- * @return uid
- */
- public String getUid() {
- return uid;
- }
- /**
- * @param uid
- */
- public void setUid(String uid) {
- this.uid = uid == null ? null : uid.trim();
- }
- /**
- * @return block_addr
- */
- public String getBlockAddr() {
- return blockAddr;
- }
- /**
- * @param blockAddr
- */
- public void setBlockAddr(String blockAddr) {
- this.blockAddr = blockAddr == null ? null : blockAddr.trim();
- }
- /**
- * @return block_height
- */
- public Integer getBlockHeight() {
- return blockHeight;
- }
- /**
- * @param blockHeight
- */
- public void setBlockHeight(Integer blockHeight) {
- this.blockHeight = blockHeight;
- }
- /**
- * @return block_txid
- */
- public String getBlockTxid() {
- return blockTxid;
- }
- /**
- * @param blockTxid
- */
- public void setBlockTxid(String blockTxid) {
- this.blockTxid = blockTxid == null ? null : blockTxid.trim();
- }
- /**
- * @return block_busiid
- */
- public String getBlockBusiid() {
- return blockBusiid;
- }
- /**
- * @param blockBusiid
- */
- public void setBlockBusiid(String blockBusiid) {
- this.blockBusiid = blockBusiid == null ? null : blockBusiid.trim();
- }
- /**
- * @return upchain_switch
- */
- public String getUpchainSwitch() {
- return upchainSwitch;
- }
- /**
- * @param upchainSwitch
- */
- public void setUpchainSwitch(String upchainSwitch) {
- this.upchainSwitch = upchainSwitch == null ? null : upchainSwitch.trim();
- }
- /**
- * @return block_create_time
- */
- public Date getBlockCreateTime() {
- return blockCreateTime;
- }
- /**
- * @param blockCreateTime
- */
- public void setBlockCreateTime(Date blockCreateTime) {
- this.blockCreateTime = blockCreateTime;
- }
- /**
- * @return block_update_time
- */
- public Date getBlockUpdateTime() {
- return blockUpdateTime;
- }
- /**
- * @param blockUpdateTime
- */
- public void setBlockUpdateTime(Date blockUpdateTime) {
- this.blockUpdateTime = blockUpdateTime;
- }
- /**
- * @return block_timestamp
- */
- public BigDecimal getBlockTimestamp() {
- return blockTimestamp;
- }
- /**
- * @param blockTimestamp
- */
- public void setBlockTimestamp(BigDecimal blockTimestamp) {
- this.blockTimestamp = blockTimestamp;
- }
- /**
- * @return block_hash_code
- */
- public String getBlockHashCode() {
- return blockHashCode;
- }
- /**
- * @param blockHashCode
- */
- public void setBlockHashCode(String blockHashCode) {
- this.blockHashCode = blockHashCode == null ? null : blockHashCode.trim();
- }
- /**
- * @return block_file_id
- */
- public String getBlockFileId() {
- return blockFileId;
- }
- /**
- * @param blockFileId
- */
- public void setBlockFileId(String blockFileId) {
- this.blockFileId = blockFileId == null ? null : blockFileId.trim();
- }
- /**
- * @return id
- */
- public String getId() {
- return id;
- }
- /**
- * @param id
- */
- public void setId(String id) {
- this.id = id == null ? null : id.trim();
- }
- /**
- * @return parentid
- */
- public String getParentid() {
- return parentid;
- }
- /**
- * @param parentid
- */
- public void setParentid(String parentid) {
- this.parentid = parentid == null ? null : parentid.trim();
- }
- /**
- * @return storageid
- */
- public String getStorageid() {
- return storageid;
- }
- /**
- * @param storageid
- */
- public void setStorageid(String storageid) {
- this.storageid = storageid == null ? null : storageid.trim();
- }
- /**
- * @return isdir
- */
- public String getIsdir() {
- return isdir;
- }
- /**
- * @param isdir
- */
- public void setIsdir(String isdir) {
- this.isdir = isdir == null ? null : isdir.trim();
- }
- /**
- * @return lasttime
- */
- public Date getLasttime() {
- return lasttime;
- }
- /**
- * @param lasttime
- */
- public void setLasttime(Date lasttime) {
- this.lasttime = lasttime;
- }
- /**
- * @return remarks
- */
- public String getRemarks() {
- return remarks;
- }
- /**
- * @param remarks
- */
- public void setRemarks(String remarks) {
- this.remarks = remarks == null ? null : remarks.trim();
- }
- /**
- * @return filepath
- */
- public String getFilepath() {
- return filepath;
- }
- /**
- * @param filepath
- */
- public void setFilepath(String filepath) {
- this.filepath = filepath == null ? null : filepath.trim();
- }
- /**
- * @return filetype
- */
- public String getFiletype() {
- return filetype;
- }
- /**
- * @param filetype
- */
- public void setFiletype(String filetype) {
- this.filetype = filetype == null ? null : filetype.trim();
- }
- /**
- * @return filetimelength
- */
- public String getFiletimelength() {
- return filetimelength;
- }
- /**
- * @param filetimelength
- */
- public void setFiletimelength(String filetimelength) {
- this.filetimelength = filetimelength == null ? null : filetimelength.trim();
- }
- /**
- * @return filesize
- */
- public BigDecimal getFilesize() {
- return filesize;
- }
- /**
- * @param filesize
- */
- public void setFilesize(BigDecimal filesize) {
- this.filesize = filesize;
- }
- /**
- * @return filename
- */
- public String getFilename() {
- return filename;
- }
- /**
- * @param filename
- */
- public void setFilename(String filename) {
- this.filename = filename == null ? null : filename.trim();
- }
- /**
- * @return legal_letter_apply_msg
- */
- public String getLegalLetterApplyMsg() {
- return legalLetterApplyMsg;
- }
- /**
- * @param legalLetterApplyMsg
- */
- public void setLegalLetterApplyMsg(String legalLetterApplyMsg) {
- this.legalLetterApplyMsg = legalLetterApplyMsg == null ? null : legalLetterApplyMsg.trim();
- }
- /**
- * @return notarization_apply_msg
- */
- public String getNotarizationApplyMsg() {
- return notarizationApplyMsg;
- }
- /**
- * @param notarizationApplyMsg
- */
- public void setNotarizationApplyMsg(String notarizationApplyMsg) {
- this.notarizationApplyMsg = notarizationApplyMsg == null ? null : notarizationApplyMsg.trim();
- }
- /**
- * @return legal_letter_apply_time
- */
- public Date getLegalLetterApplyTime() {
- return legalLetterApplyTime;
- }
- /**
- * @param legalLetterApplyTime
- */
- public void setLegalLetterApplyTime(Date legalLetterApplyTime) {
- this.legalLetterApplyTime = legalLetterApplyTime;
- }
- /**
- * @return notarization_apply_time
- */
- public Date getNotarizationApplyTime() {
- return notarizationApplyTime;
- }
- /**
- * @param notarizationApplyTime
- */
- public void setNotarizationApplyTime(Date notarizationApplyTime) {
- this.notarizationApplyTime = notarizationApplyTime;
- }
- /**
- * @return legal_letter_file_id
- */
- public String getLegalLetterFileId() {
- return legalLetterFileId;
- }
- /**
- * @param legalLetterFileId
- */
- public void setLegalLetterFileId(String legalLetterFileId) {
- this.legalLetterFileId = legalLetterFileId == null ? null : legalLetterFileId.trim();
- }
- /**
- * @return notarization_file_id
- */
- public String getNotarizationFileId() {
- return notarizationFileId;
- }
- /**
- * @param notarizationFileId
- */
- public void setNotarizationFileId(String notarizationFileId) {
- this.notarizationFileId = notarizationFileId == null ? null : notarizationFileId.trim();
- }
- /**
- * @return legal_letter_file_time
- */
- public Date getLegalLetterFileTime() {
- return legalLetterFileTime;
- }
- /**
- * @param legalLetterFileTime
- */
- public void setLegalLetterFileTime(Date legalLetterFileTime) {
- this.legalLetterFileTime = legalLetterFileTime;
- }
- /**
- * @return notarization_file_time
- */
- public Date getNotarizationFileTime() {
- return notarizationFileTime;
- }
- /**
- * @param notarizationFileTime
- */
- public void setNotarizationFileTime(Date notarizationFileTime) {
- this.notarizationFileTime = notarizationFileTime;
- }
- /**
- * @return legal_letter_apply_status
- */
- public String getLegalLetterApplyStatus() {
- return legalLetterApplyStatus;
- }
- /**
- * @param legalLetterApplyStatus
- */
- public void setLegalLetterApplyStatus(String legalLetterApplyStatus) {
- this.legalLetterApplyStatus = legalLetterApplyStatus == null ? null : legalLetterApplyStatus.trim();
- }
- /**
- * @return notarization_apply_status
- */
- public String getNotarizationApplyStatus() {
- return notarizationApplyStatus;
- }
- /**
- * @param notarizationApplyStatus
- */
- public void setNotarizationApplyStatus(String notarizationApplyStatus) {
- this.notarizationApplyStatus = notarizationApplyStatus == null ? null : notarizationApplyStatus.trim();
- }
- /**
- * @return legal_letter_apply_uid
- */
- public String getLegalLetterApplyUid() {
- return legalLetterApplyUid;
- }
- /**
- * @param legalLetterApplyUid
- */
- public void setLegalLetterApplyUid(String legalLetterApplyUid) {
- this.legalLetterApplyUid = legalLetterApplyUid == null ? null : legalLetterApplyUid.trim();
- }
- /**
- * @return notarization_apply_uid
- */
- public String getNotarizationApplyUid() {
- return notarizationApplyUid;
- }
- /**
- * @param notarizationApplyUid
- */
- public void setNotarizationApplyUid(String notarizationApplyUid) {
- this.notarizationApplyUid = notarizationApplyUid == null ? null : notarizationApplyUid.trim();
- }
- /**
- * @return link_id
- */
- public String getLinkId() {
- return linkId;
- }
- /**
- * @param linkId
- */
- public void setLinkId(String linkId) {
- this.linkId = linkId == null ? null : linkId.trim();
- }
- }
|