| | |
| | | |
| | | private boolean state_select = false;//表示是否显示选中组件(true显示) |
| | | |
| | | private String deliverStatus;//(PAID:已交付 ;UNDELIVERED :未交付) |
| | | private boolean isOtherShare;//是不是分享的电站 |
| | | private String accountType;//如果是分享的,分享的权限类型(VIEW : 仅查看,ADMIN : 查看加控制) |
| | | private boolean debugPerm;//(是否开启授权安装商,未开启状态安装仅查看) |
| | | |
| | | private HouseInfoBean.Location location;//电站地址 |
| | | |
| | | |
| | | private String address;//详细地址 |
| | | |
| | | public String getDeliverStatus() { |
| | | return deliverStatus == null ? "" : deliverStatus; |
| | | } |
| | | |
| | | public void setDeliverStatus(String deliverStatus) { |
| | | this.deliverStatus = deliverStatus; |
| | | } |
| | | |
| | | public boolean isOtherShare() { |
| | | return isOtherShare; |
| | | } |
| | | |
| | | public void setOtherShare(boolean otherShare) { |
| | | isOtherShare = otherShare; |
| | | } |
| | | |
| | | public String getAccountType() { |
| | | return accountType == null ? "" : accountType; |
| | | } |
| | | |
| | | public void setAccountType(String accountType) { |
| | | this.accountType = accountType; |
| | | } |
| | | |
| | | public boolean isDebugPerm() { |
| | | return debugPerm; |
| | | } |
| | | |
| | | public void setDebugPerm(boolean debugPerm) { |
| | | this.debugPerm = debugPerm; |
| | | } |
| | | |
| | | public boolean isState_select() { |
| | | return state_select; |