systemlog.java

来自「hibernate+spring+ext2.0 的物流网站」· Java 代码 · 共 66 行

JAVA
66
字号
package com.po;

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

public class SystemLog implements java.io.Serializable {

	// Fields

	private Integer systemLogId;
	private BranchInfo branchInfo;
	private UserInfo userInfo;
	private String systemLogMemo;

	// Constructors

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

	/** full constructor */
	public SystemLog(BranchInfo branchInfo, UserInfo userInfo,
			String systemLogMemo) {
		this.branchInfo = branchInfo;
		this.userInfo = userInfo;
		this.systemLogMemo = systemLogMemo;
	}

	// Property accessors

	public Integer getSystemLogId() {
		return this.systemLogId;
	}

	public void setSystemLogId(Integer systemLogId) {
		this.systemLogId = systemLogId;
	}

	public BranchInfo getBranchInfo() {
		return this.branchInfo;
	}

	public void setBranchInfo(BranchInfo branchInfo) {
		this.branchInfo = branchInfo;
	}

	public UserInfo getUserInfo() {
		return this.userInfo;
	}

	public void setUserInfo(UserInfo userInfo) {
		this.userInfo = userInfo;
	}

	public String getSystemLogMemo() {
		return this.systemLogMemo;
	}

	public void setSystemLogMemo(String systemLogMemo) {
		this.systemLogMemo = systemLogMemo;
	}

}

⌨️ 快捷键说明

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