crm_project_contractitem.java
来自「java开发的办公系统 1.系统管理 (地区管理,部门管理,菜单管理,用户管理」· Java 代码 · 共 334 行
JAVA
334 行
package com.vere.crm.project.item; import java.io.*; import com.vere.crm.customer.item.*; public class Crm_project_contractItem implements Serializable { private String id;// private String crm_project_info_id;//项目名称 private Crm_project_infoItem crm_project_infoItem;//项目名称 private String customer_id;//客户名称 private Crm_customer_infoItem crm_customer_infoItem;//客户名称 private String customer_contact_id;//客户方代表 private Crm_customer_contactItem crm_customer_contactItem;//客户方代表 private String contact_type;//合同类型 private String contact_type_dictionaryname;//合同类型 private String supply_company;//供方 private String supply_name;//供方代表 private String sign_date;//项目签约时间 private String end_date;//项目结束时间 private String maintain_start_date;//维护开始时间 private String maintain_end_date;//维护结束日期 private String sign_address;//签定地址 private String contact_doc;//合同文档 private String memo;//备注 public Crm_project_contractItem() { } /** * @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 getCustomer_id() { if(this.customer_id==null) this.customer_id=""; return this.customer_id; } /** * @see 客户名称 */ public void setCustomer_id(String customer_id) { this.customer_id=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 getCustomer_contact_id() { if(this.customer_contact_id==null) this.customer_contact_id=""; return this.customer_contact_id; } /** * @see 客户方代表 */ public void setCustomer_contact_id(String customer_contact_id) { this.customer_contact_id=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 getContact_type() { if(this.contact_type==null) this.contact_type=""; return this.contact_type; } /** * @see 合同类型 */ public void setContact_type(String contact_type) { this.contact_type=contact_type; } /** * @see 合同类型 */ public String getContact_type_dictionaryname() { if(this.contact_type_dictionaryname==null) this.contact_type_dictionaryname=""; return this.contact_type_dictionaryname; } /** * @see 合同类型 */ public void setContact_type_dictionaryname(String contact_type_dictionaryname) { this.contact_type_dictionaryname=contact_type_dictionaryname; } /** * @see 供方 */ public String getSupply_company() { if(this.supply_company==null) this.supply_company=""; return this.supply_company; } /** * @see 供方 */ public void setSupply_company(String supply_company) { this.supply_company=supply_company; } /** * @see 供方代表 */ public String getSupply_name() { if(this.supply_name==null) this.supply_name=""; return this.supply_name; } /** * @see 供方代表 */ public void setSupply_name(String supply_name) { this.supply_name=supply_name; } /** * @see 项目签约时间 */ public String getSign_date() { if(this.sign_date==null) this.sign_date=""; return this.sign_date; } /** * @see 项目签约时间 */ public void setSign_date(String sign_date) { this.sign_date=sign_date; } /** * @see 项目结束时间 */ public String getEnd_date() { if(this.end_date==null) this.end_date=""; return this.end_date; } /** * @see 项目结束时间 */ public void setEnd_date(String end_date) { this.end_date=end_date; } /** * @see 维护开始时间 */ public String getMaintain_start_date() { if(this.maintain_start_date==null) this.maintain_start_date=""; return this.maintain_start_date; } /** * @see 维护开始时间 */ public void setMaintain_start_date(String maintain_start_date) { this.maintain_start_date=maintain_start_date; } /** * @see 维护结束日期 */ public String getMaintain_end_date() { if(this.maintain_end_date==null) this.maintain_end_date=""; return this.maintain_end_date; } /** * @see 维护结束日期 */ public void setMaintain_end_date(String maintain_end_date) { this.maintain_end_date=maintain_end_date; } /** * @see 签定地址 */ public String getSign_address() { if(this.sign_address==null) this.sign_address=""; return this.sign_address; } /** * @see 签定地址 */ public void setSign_address(String sign_address) { this.sign_address=sign_address; } /** * @see 合同文档 */ public String getContact_doc() { if(this.contact_doc==null) this.contact_doc=""; return this.contact_doc; } /** * @see 合同文档 */ public void setContact_doc(String contact_doc) { this.contact_doc=contact_doc; } /** * @see 备注 */ public String getMemo() { if(this.memo==null) this.memo=""; return this.memo; } /** * @see 备注 */ public void setMemo(String memo) { this.memo=memo; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?