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