📄 customer.java
字号:
package com.relationinfo.customertrace.hibernate;
import java.io.Serializable;
import java.util.Date;
public class Customer implements Serializable
{
/**
*
*/
private static final long serialVersionUID = 1L;
/**
* 属性映射到列 customercode in the customer table.
*/
private String customercode;
/**
* 属性映射到列 customertypecode in the customer table.
*/
private String customertypecode;
/**
* 属性映射到列 customername in the customer table.
*/
private String customername;
/**
* 属性映射到列 address in the customer table.
*/
private String address;
/**
* 属性映射到列 phone in the customer table.
*/
private String phone;
/**
* 属性映射到列 mobile in the customer table.
*/
private String mobile;
/**
* 属性映射到列 email in the customer table.
*/
private String email;
/**
* 属性映射到列 birthday in the customer table.
*/
private Date birthday;
/**
* 属性映射到列 hobby in the customer table.
*/
private String hobby;
/**
* 属性映射到列 note in the customer table.
*/
private String note;
/**
* Method 'Customer'
*
*/
public Customer()
{
}
/**
* 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 '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 'getCustomername'
*
* @return java.lang.String
*/
public java.lang.String getCustomername()
{
return customername;
}
/**
* Method 'setCustomername'
*
* @param customername
*/
public void setCustomername(java.lang.String customername)
{
this.customername = customername;
}
/**
* Method 'getAddress'
*
* @return java.lang.String
*/
public java.lang.String getAddress()
{
return address;
}
/**
* Method 'setAddress'
*
* @param address
*/
public void setAddress(java.lang.String address)
{
this.address = address;
}
/**
* Method 'getPhone'
*
* @return java.lang.String
*/
public java.lang.String getPhone()
{
return phone;
}
/**
* Method 'setPhone'
*
* @param phone
*/
public void setPhone(java.lang.String phone)
{
this.phone = phone;
}
/**
* Method 'getMobile'
*
* @return java.lang.String
*/
public java.lang.String getMobile()
{
return mobile;
}
/**
* Method 'setMobile'
*
* @param mobile
*/
public void setMobile(java.lang.String mobile)
{
this.mobile = mobile;
}
/**
* Method 'getEmail'
*
* @return java.lang.String
*/
public java.lang.String getEmail()
{
return email;
}
/**
* Method 'setEmail'
*
* @param email
*/
public void setEmail(java.lang.String email)
{
this.email = email;
}
/**
* Method 'getBirthday'
*
* @return java.util.Date
*/
public java.util.Date getBirthday()
{
return birthday;
}
/**
* Method 'setBirthday'
*
* @param birthday
*/
public void setBirthday(java.util.Date birthday)
{
this.birthday = birthday;
}
/**
* Method 'getHobby'
*
* @return java.lang.String
*/
public java.lang.String getHobby()
{
return hobby;
}
/**
* Method 'setHobby'
*
* @param hobby
*/
public void setHobby(java.lang.String hobby)
{
this.hobby = hobby;
}
/**
* Method 'getNote'
*
* @return java.lang.String
*/
public java.lang.String getNote()
{
return note;
}
/**
* Method 'setNote'
*
* @param note
*/
public void setNote(java.lang.String note)
{
this.note = note;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -