📄 relation.java
字号:
package com.relationinfo.customertrace.hibernate;
import java.util.Set;
import java.util.HashSet;
import java.io.Serializable;
public class Relation implements Serializable
{
/**
*
*/
private static final long serialVersionUID = 1L;
/**
* 属性映射到列 relationcode in the relation table.
*/
private String relationcode;
/**
* 属性映射到列 customercode in the relation table.
*/
private String customercode;
/**
* 属性映射到列 relationname in the relation table.
*/
private String relationname;
/**
* Method 'Relation'
*
*/
public Relation()
{
}
/**
* Method 'getRelationcode'
*
* @return java.lang.String
*/
public java.lang.String getRelationcode()
{
return relationcode;
}
/**
* Method 'setRelationcode'
*
* @param relationcode
*/
public void setRelationcode(java.lang.String relationcode)
{
this.relationcode = relationcode;
}
/**
* Method 'getCustomercode'
*
* @return java.lang.String
*/
public java.lang.String getCustomercode()
{
return customercode;
}
/**
* Method 'setCustomercode'
*
* @param customercode
*/
public void setCustomercode(java.lang.String customercode)
{
this.customercode = customercode;
}
/**
* Method 'getRelationname'
*
* @return java.lang.String
*/
public java.lang.String getRelationname()
{
return relationname;
}
/**
* Method 'setRelationname'
*
* @param relationname
*/
public void setRelationname(java.lang.String relationname)
{
this.relationname = relationname;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -