crm_project_spaceitem.java
来自「java开发的办公系统 1.系统管理 (地区管理,部门管理,菜单管理,用户管理」· Java 代码 · 共 207 行
JAVA
207 行
package com.vere.crm.project.item; import java.io.*; import com.vere.crm.customer.item.*; public class Crm_project_spaceItem implements Serializable { private String id;// private String crm_project_info_id;//项目名称 private Crm_project_infoItem crm_project_infoItem;//项目名称 private String crm_customer_id;//客户名称 private Crm_customer_infoItem crm_customer_infoItem;//客户名称 private String crm_customer_contact_id;//客户联系人 private Crm_customer_contactItem crm_customer_contactItem;//客户联系人 private String test_address;//测试地址 private String test_space;//测试空间信息 private String online_address;//上线地址 private String online_space;//上线空间信息 public Crm_project_spaceItem() { } /** * @see */ public String getId() { if(this.id==null) this.id=""; return this.id; } /** * @see */ public void setId(String id) { this.id=id; } /** * @see 项目名称 */ public String getCrm_project_info_id() { if(this.crm_project_info_id==null) this.crm_project_info_id=""; return this.crm_project_info_id; } /** * @see 项目名称 */ public void setCrm_project_info_id(String crm_project_info_id) { this.crm_project_info_id=crm_project_info_id; } /** * @see 项目名称 */ public Crm_project_infoItem getCrm_project_infoItem() { return this.crm_project_infoItem; } /** * @see 项目名称 */ public void setCrm_project_infoItem(Crm_project_infoItem crm_project_infoItem) { this.crm_project_infoItem=crm_project_infoItem; } /** * @see 客户名称 */ public String getCrm_customer_id() { if(this.crm_customer_id==null) this.crm_customer_id=""; return this.crm_customer_id; } /** * @see 客户名称 */ public void setCrm_customer_id(String crm_customer_id) { this.crm_customer_id=crm_customer_id; } /** * @see 客户名称 */ public Crm_customer_infoItem getCrm_customer_infoItem() { return this.crm_customer_infoItem; } /** * @see 客户名称 */ public void setCrm_customer_infoItem(Crm_customer_infoItem crm_customer_infoItem) { this.crm_customer_infoItem=crm_customer_infoItem; } /** * @see 客户联系人 */ public String getCrm_customer_contact_id() { if(this.crm_customer_contact_id==null) this.crm_customer_contact_id=""; return this.crm_customer_contact_id; } /** * @see 客户联系人 */ public void setCrm_customer_contact_id(String crm_customer_contact_id) { this.crm_customer_contact_id=crm_customer_contact_id; } /** * @see 客户联系人 */ public Crm_customer_contactItem getCrm_customer_contactItem() { return this.crm_customer_contactItem; } /** * @see 客户联系人 */ public void setCrm_customer_contactItem(Crm_customer_contactItem crm_customer_contactItem) { this.crm_customer_contactItem=crm_customer_contactItem; } /** * @see 测试地址 */ public String getTest_address() { if(this.test_address==null) this.test_address=""; return this.test_address; } /** * @see 测试地址 */ public void setTest_address(String test_address) { this.test_address=test_address; } /** * @see 测试空间信息 */ public String getTest_space() { if(this.test_space==null) this.test_space=""; return this.test_space; } /** * @see 测试空间信息 */ public void setTest_space(String test_space) { this.test_space=test_space; } /** * @see 上线地址 */ public String getOnline_address() { if(this.online_address==null) this.online_address=""; return this.online_address; } /** * @see 上线地址 */ public void setOnline_address(String online_address) { this.online_address=online_address; } /** * @see 上线空间信息 */ public String getOnline_space() { if(this.online_space==null) this.online_space=""; return this.online_space; } /** * @see 上线空间信息 */ public void setOnline_space(String online_space) { this.online_space=online_space; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?