package cn.com.goldenwater.dcproj.param; import cn.com.goldenwater.core.param.PageParam; import io.swagger.annotations.ApiParam; import java.util.Date; import java.io.Serializable; /** * AttMedBaseParam * * @author lune * @date 2019-2-19 */ public class AttMedBaseParam extends PageParam 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 AttMedBaseParam() { } 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; } }