package com.hdl.linkpm.sdk.project.bean;
|
|
import androidx.annotation.NonNull;
|
|
import java.io.Serializable;
|
|
/**
|
* Created by jlchen on 12/9/21.
|
* 项目详细信息
|
*/
|
public class NewProjectRequestBean implements Serializable {
|
private String address;//详细地址
|
private String communityName;//项目名称
|
private String companyId;//公司ID
|
private String debugEndDate;//调试结束日期
|
private String debugStartDate;//调试开始日期
|
private String debugUserId;//调试员工账号id
|
private ProjectLocationBean location;//所在地区
|
private String projectType;//0:家居项目 1:地产项目 2:公建项目 3:酒店项目,可用值:Home,RealEstate,PublicBuilding,Hotel
|
private String protocolType;//BUSPRO,KNX,ZIGBEE
|
private Boolean isMyProjects = true;//是否我的项目
|
|
@NonNull
|
public String getAddress() {
|
return address == null ? "" : address;
|
}
|
|
public void setAddress(@NonNull String address) {
|
this.address = address;
|
}
|
|
@NonNull
|
public String getCommunityName() {
|
return communityName == null ? "" : communityName;
|
}
|
|
public void setCommunityName(@NonNull String communityName) {
|
this.communityName = communityName;
|
}
|
|
@NonNull
|
public String getCompanyId() {
|
return companyId == null ? "" : companyId;
|
}
|
|
public void setCompanyId(@NonNull String companyId) {
|
this.companyId = companyId;
|
}
|
|
@NonNull
|
public String getDebugEndDate() {
|
return debugEndDate == null ? "" : debugEndDate;
|
}
|
|
public void setDebugEndDate(@NonNull String debugEndDate) {
|
this.debugEndDate = debugEndDate;
|
}
|
|
@NonNull
|
public String getDebugStartDate() {
|
return debugStartDate == null ? "" : debugStartDate;
|
}
|
|
public void setDebugStartDate(@NonNull String debugStartDate) {
|
this.debugStartDate = debugStartDate;
|
}
|
|
@NonNull
|
public String getDebugUserId() {
|
return debugUserId == null ? "" : debugUserId;
|
}
|
|
public void setDebugUserId(@NonNull String debugUserId) {
|
this.debugUserId = debugUserId;
|
}
|
|
public ProjectLocationBean getLocation() {
|
return location;
|
}
|
|
public void setLocation(ProjectLocationBean location) {
|
this.location = location;
|
}
|
|
@NonNull
|
public String getProjectType() {
|
return projectType == null ? "" : projectType;
|
}
|
|
public void setProjectType(@NonNull String projectType) {
|
this.projectType = projectType;
|
}
|
|
@NonNull
|
public String getProtocolType() {
|
return protocolType == null ? "" : protocolType;
|
}
|
|
public void setProtocolType(@NonNull String protocolType) {
|
this.protocolType = protocolType;
|
}
|
|
public Boolean getIsMyProjects() {
|
return isMyProjects;
|
}
|
|
public void setIsMyProjects(Boolean myProjects) {
|
isMyProjects = myProjects;
|
}
|
}
|