crm_project_progressitem.java
来自「java开发的办公系统 1.系统管理 (地区管理,部门管理,菜单管理,用户管理」· Java 代码 · 共 189 行
JAVA
189 行
package com.vere.crm.project.item; import java.io.*; import com.vere.crm.customer.item.*; public class Crm_project_progressItem 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 progress_content;//项目进度表 private String write_people;//填写人 private String write_date;//填写日期 public Crm_project_progressItem() { } /** * @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 getProgress_content() { if(this.progress_content==null) this.progress_content=""; return this.progress_content; } /** * @see 项目进度表 */ public void setProgress_content(String progress_content) { this.progress_content=progress_content; } /** * @see 填写人 */ public String getWrite_people() { if(this.write_people==null) this.write_people=""; return this.write_people; } /** * @see 填写人 */ public void setWrite_people(String write_people) { this.write_people=write_people; } /** * @see 填写日期 */ public String getWrite_date() { if(this.write_date==null) this.write_date=""; return this.write_date; } /** * @see 填写日期 */ public void setWrite_date(String write_date) { this.write_date=write_date; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?