package cn.com.goldenwater.dcproj.model; import java.io.Serializable; import java.util.Date; import cn.com.goldenwater.core.model.BaseBean; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; /** * entity:AttMedBase * * @author lune * @date 2019-2-19 */ @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"}) public class AttMedBase extends BaseBean implements Serializable { private String guid; private String medName; private String medTitl; private String keyWord; private String estaPop; private Date estaDate; private String estaWiunName; private String medType; private String medPath; private Double medSize; private String medExt; private String isSec; private String secGrad; private String docLang; private Date imgShootTm; private String imgViewTp; private Double vidLen; private String abs; private String note; private Date collTime; private Date updTime; private String recPers; public AttMedBase() { } public String getGuid() { return guid; } public void setGuid(String guid) { this.guid = guid; } public String getMedName() { return medName; } public void setMedName(String medName) { this.medName = medName; } public String getMedTitl() { return medTitl; } public void setMedTitl(String medTitl) { this.medTitl = medTitl; } public String getKeyWord() { return keyWord; } public void setKeyWord(String keyWord) { this.keyWord = keyWord; } public String getEstaPop() { return estaPop; } public void setEstaPop(String estaPop) { this.estaPop = estaPop; } public Date getEstaDate() { return estaDate; } public void setEstaDate(Date estaDate) { this.estaDate = estaDate; } public String getEstaWiunName() { return estaWiunName; } public void setEstaWiunName(String estaWiunName) { this.estaWiunName = estaWiunName; } public String getMedType() { return medType; } public void setMedType(String medType) { this.medType = medType; } public String getMedPath() { return medPath; } public void setMedPath(String medPath) { this.medPath = medPath; } public Double getMedSize() { return medSize; } public void setMedSize(Double medSize) { this.medSize = medSize; } public String getMedExt() { return medExt; } public void setMedExt(String medExt) { this.medExt = medExt; } public String getIsSec() { return isSec; } public void setIsSec(String isSec) { this.isSec = isSec; } public String getSecGrad() { return secGrad; } public void setSecGrad(String secGrad) { this.secGrad = secGrad; } public String getDocLang() { return docLang; } public void setDocLang(String docLang) { this.docLang = docLang; } public Date getImgShootTm() { return imgShootTm; } public void setImgShootTm(Date imgShootTm) { this.imgShootTm = imgShootTm; } public String getImgViewTp() { return imgViewTp; } public void setImgViewTp(String imgViewTp) { this.imgViewTp = imgViewTp; } public Double getVidLen() { return vidLen; } public void setVidLen(Double vidLen) { this.vidLen = vidLen; } public String getAbs() { return abs; } public void setAbs(String abs) { this.abs = abs; } public String getNote() { return note; } public void setNote(String note) { this.note = note; } public Date getCollTime() { return collTime; } public void setCollTime(Date collTime) { this.collTime = collTime; } public Date getUpdTime() { return updTime; } public void setUpdTime(Date updTime) { this.updTime = updTime; } public String getRecPers() { return recPers; } public void setRecPers(String recPers) { this.recPers = recPers; } @Override public String toString() { return "AttMedBase [" + "guid=" + guid + ", medName=" + medName + ", medTitl=" + medTitl + ", keyWord=" + keyWord + ", estaPop=" + estaPop + ", estaDate=" + estaDate + ", estaWiunName=" + estaWiunName + ", medType=" + medType + ", medPath=" + medPath + ", medSize=" + medSize + ", medExt=" + medExt + ", isSec=" + isSec + ", secGrad=" + secGrad + ", docLang=" + docLang + ", imgShootTm=" + imgShootTm + ", imgViewTp=" + imgViewTp + ", vidLen=" + vidLen + ", abs=" + abs + ", note=" + note + ", collTime=" + collTime + ", updTime=" + updTime + ", recPers=" + recPers + "]"; } }