clinetintercoursenote.java

来自「一套自己原先在学校作的CRM,大家指点下」· Java 代码 · 共 116 行

JAVA
116
字号
package com.crm.pojo;

/**
 * ClinetIntercourseNote generated by MyEclipse Persistence Tools
 */

public class ClinetIntercourseNote implements java.io.Serializable {

	// Fields

	/**
	 * 
	 */
	private static final long serialVersionUID = 8710953787611921245L;

	private Integer cinId;

	private Client client=new  Client();

	private String cinTime;

	private String cinAddress;

	private String cinSummary;

	private String cinInfo;

	private String cinRemark;

	// Constructors

	/** default constructor */
	public ClinetIntercourseNote() {
	}

	/** minimal constructor */
	public ClinetIntercourseNote(Client client, String cinTime,
			String cinAddress, String cinSummary, String cinInfo) {
		this.client = client;
		this.cinTime = cinTime;
		this.cinAddress = cinAddress;
		this.cinSummary = cinSummary;
		this.cinInfo = cinInfo;
	}

	/** full constructor */
	public ClinetIntercourseNote(Client client, String cinTime,
			String cinAddress, String cinSummary, String cinInfo,
			String cinRemark) {
		this.client = client;
		this.cinTime = cinTime;
		this.cinAddress = cinAddress;
		this.cinSummary = cinSummary;
		this.cinInfo = cinInfo;
		this.cinRemark = cinRemark;
	}

	// Property accessors

	public Integer getCinId() {
		return this.cinId;
	}

	public void setCinId(Integer cinId) {
		this.cinId = cinId;
	}

	public Client getClient() {
		return this.client;
	}

	public void setClient(Client client) {
		this.client = client;
	}

	public String getCinTime() {
		return this.cinTime;
	}

	public void setCinTime(String cinTime) {
		this.cinTime = cinTime;
	}

	public String getCinAddress() {
		return this.cinAddress;
	}

	public void setCinAddress(String cinAddress) {
		this.cinAddress = cinAddress;
	}

	public String getCinSummary() {
		return this.cinSummary;
	}

	public void setCinSummary(String cinSummary) {
		this.cinSummary = cinSummary;
	}

	public String getCinInfo() {
		return this.cinInfo;
	}

	public void setCinInfo(String cinInfo) {
		this.cinInfo = cinInfo;
	}

	public String getCinRemark() {
		return this.cinRemark;
	}

	public void setCinRemark(String cinRemark) {
		this.cinRemark = cinRemark;
	}

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?