| package com.doumee.keyCabinet.base; | 
|   | 
| import java.io.Serializable; | 
|   | 
| /** | 
|  * 返回banner图数据 | 
|  */ | 
| //返回banner图数据 | 
| public class BannerPicResponsePara implements Serializable { | 
|   | 
|     //主键id") | 
|     private String id; | 
|   | 
|     //图片Url") | 
|     private String pathUrl; | 
|     //图片url全路径") | 
|     private String imageFullPath; | 
|     //排序") | 
|     private Integer sort; | 
|     //跳转页面参数值") | 
|     private String paramValue; | 
|     //参数名称值") | 
|     private String paramName; | 
|     //0:首页banner,1:新人") | 
|     private String type; | 
|     //首页标题") | 
|     private String title; | 
|     //图文内容") | 
|     private String content; | 
|     //是否启用") | 
|     private String isAllow; | 
|     private String typeName; | 
|     //跳转路径") | 
|     private String jumpPath; | 
|   | 
|     public String getId() { | 
|         return id; | 
|     } | 
|   | 
|     public void setId(String id) { | 
|         this.id = id; | 
|     } | 
|   | 
|     public String getPathUrl() { | 
|         return pathUrl; | 
|     } | 
|   | 
|     public void setPathUrl(String pathUrl) { | 
|         this.pathUrl = pathUrl; | 
|     } | 
|   | 
|     public String getImageFullPath() { | 
|         return imageFullPath; | 
|     } | 
|   | 
|     public void setImageFullPath(String imageFullPath) { | 
|         this.imageFullPath = imageFullPath; | 
|     } | 
|   | 
|     public Integer getSort() { | 
|         return sort; | 
|     } | 
|   | 
|     public void setSort(Integer sort) { | 
|         this.sort = sort; | 
|     } | 
|   | 
|     public String getParamValue() { | 
|         return paramValue; | 
|     } | 
|   | 
|     public void setParamValue(String paramValue) { | 
|         this.paramValue = paramValue; | 
|     } | 
|   | 
|     public String getParamName() { | 
|         return paramName; | 
|     } | 
|   | 
|     public void setParamName(String paramName) { | 
|         this.paramName = paramName; | 
|     } | 
|   | 
|     public String getType() { | 
|         return type; | 
|     } | 
|   | 
|     public void setType(String type) { | 
|         this.type = type; | 
|     } | 
|   | 
|     public String getTitle() { | 
|         return title; | 
|     } | 
|   | 
|     public void setTitle(String title) { | 
|         this.title = title; | 
|     } | 
|   | 
|     public String getContent() { | 
|         return content; | 
|     } | 
|   | 
|     public void setContent(String content) { | 
|         this.content = content; | 
|     } | 
|   | 
|     public String getIsAllow() { | 
|         return isAllow; | 
|     } | 
|   | 
|     public void setIsAllow(String isAllow) { | 
|         this.isAllow = isAllow; | 
|     } | 
|   | 
|     public String getTypeName() { | 
|         return typeName; | 
|     } | 
|   | 
|     public void setTypeName(String typeName) { | 
|         this.typeName = typeName; | 
|     } | 
|   | 
|     public String getJumpPath() { | 
|         return jumpPath; | 
|     } | 
|   | 
|     public void setJumpPath(String jumpPath) { | 
|         this.jumpPath = jumpPath; | 
|     } | 
| } |