Package com.sgs.common.database
Class CustomerGroup
- java.lang.Object
-
- com.sgs.common.database.HibernateObject
-
- com.sgs.common.database.CustomerGroup
-
public class CustomerGroup extends HibernateObject
This class represents a group of customers This helps with grouping customers into their parent ownership group for labeling and packaging purposes- Author:
- SGSystems
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.String
code
*Primary Key* The unique code for this customer groupjava.util.Date
deleted
A deletion timestampjava.lang.String
name
A description of the customer group-
Fields inherited from class com.sgs.common.database.HibernateObject
ID
-
-
Constructor Summary
Constructors Constructor Description CustomerGroup()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getCode()
java.util.Date
getDeleted()
java.lang.String
getName()
void
setCode(java.lang.String code)
void
setDeleted(java.util.Date deleted)
void
setName(java.lang.String name)
-
Methods inherited from class com.sgs.common.database.HibernateObject
getExported, getID, isDontSave, isModified, setDontSave, setExported, setID, setModified
-
-
-
-
Method Detail
-
getCode
public java.lang.String getCode()
-
setCode
public void setCode(java.lang.String code)
-
getName
public java.lang.String getName()
-
setName
public void setName(java.lang.String name)
-
getDeleted
public java.util.Date getDeleted()
-
setDeleted
public void setDeleted(java.util.Date deleted)
-
-