| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- package com.java110.dto.parkingAreaAttr;
- import com.java110.dto.PageDto;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * @ClassName FloorDto
- * @Description 单元属性数据层封装
- * @Author wuxw
- * @Date 2019/4/24 8:52
- * @Version 1.0
- * add by wuxw 2019/4/24
- **/
- public class ParkingAreaAttrDto extends PageDto implements Serializable {
- private String attrId;
- private String paId;
- private String specCd;
- private String communityId;
- private String value;
- private String specName;
- private String valueName;
- private String listShow;
- private String specType;
- private Date createTime;
- private String statusCd = "0";
- public String getAttrId() {
- return attrId;
- }
- public void setAttrId(String attrId) {
- this.attrId = attrId;
- }
- public String getPaId() {
- return paId;
- }
- public void setPaId(String paId) {
- this.paId = paId;
- }
- public String getSpecCd() {
- return specCd;
- }
- public void setSpecCd(String specCd) {
- this.specCd = specCd;
- }
- public String getCommunityId() {
- return communityId;
- }
- public void setCommunityId(String communityId) {
- this.communityId = communityId;
- }
- public String getValue() {
- return value;
- }
- public void setValue(String value) {
- this.value = value;
- }
- public Date getCreateTime() {
- return createTime;
- }
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- public String getStatusCd() {
- return statusCd;
- }
- public void setStatusCd(String statusCd) {
- this.statusCd = statusCd;
- }
- public String getSpecName() {
- return specName;
- }
- public void setSpecName(String specName) {
- this.specName = specName;
- }
- public String getValueName() {
- return valueName;
- }
- public void setValueName(String valueName) {
- this.valueName = valueName;
- }
- public String getListShow() {
- return listShow;
- }
- public void setListShow(String listShow) {
- this.listShow = listShow;
- }
- public String getSpecType() {
- return specType;
- }
- public void setSpecType(String specType) {
- this.specType = specType;
- }
- }
|