syfxdmcy.java

来自「struts hibernate spring」· Java 代码 · 共 59 行

JAVA
59
字号
package com.syfxapp.pojo;

/**
 * SyfxDmCy entity. @author MyEclipse Persistence Tools
 */

public class SyfxDmCy implements java.io.Serializable {

	// Fields

	private String cyDm;
	private String cyMc;
	private String note;

	// Constructors

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

	/** minimal constructor */
	public SyfxDmCy(String cyDm) {
		this.cyDm = cyDm;
	}

	/** full constructor */
	public SyfxDmCy(String cyDm, String cyMc, String note) {
		this.cyDm = cyDm;
		this.cyMc = cyMc;
		this.note = note;
	}

	// Property accessors

	public String getCyDm() {
		return this.cyDm;
	}

	public void setCyDm(String cyDm) {
		this.cyDm = cyDm;
	}

	public String getCyMc() {
		return this.cyMc;
	}

	public void setCyMc(String cyMc) {
		this.cyMc = cyMc;
	}

	public String getNote() {
		return this.note;
	}

	public void setNote(String note) {
		this.note = note;
	}

}

⌨️ 快捷键说明

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