crm_project_reportitem.java
来自「java开发的办公系统 1.系统管理 (地区管理,部门管理,菜单管理,用户管理」· Java 代码 · 共 225 行
JAVA
225 行
package com.vere.crm.project.item; import java.io.*; import com.vere.crm.customer.item.*; public class Crm_project_reportItem 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 report_date;//报告日期 private String report_people;//报告人 private String department;//报告部门 private String finish_info;//完成情况 private String difficult_info;//疑难问题 public Crm_project_reportItem() { } /** * @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 getReport_date() { if(this.report_date==null) this.report_date=""; return this.report_date; } /** * @see 报告日期 */ public void setReport_date(String report_date) { this.report_date=report_date; } /** * @see 报告人 */ public String getReport_people() { if(this.report_people==null) this.report_people=""; return this.report_people; } /** * @see 报告人 */ public void setReport_people(String report_people) { this.report_people=report_people; } /** * @see 报告部门 */ public String getDepartment() { if(this.department==null) this.department=""; return this.department; } /** * @see 报告部门 */ public void setDepartment(String department) { this.department=department; } /** * @see 完成情况 */ public String getFinish_info() { if(this.finish_info==null) this.finish_info=""; return this.finish_info; } /** * @see 完成情况 */ public void setFinish_info(String finish_info) { this.finish_info=finish_info; } /** * @see 疑难问题 */ public String getDifficult_info() { if(this.difficult_info==null) this.difficult_info=""; return this.difficult_info; } /** * @see 疑难问题 */ public void setDifficult_info(String difficult_info) { this.difficult_info=difficult_info; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?