Brand.java
package com.tradecloud.domain.model.organisationalunit;
import com.tradecloud.domain.common.IntegratedStaticDataEntityBase;
import javax.persistence.Entity;
import javax.persistence.Table;
import javax.xml.bind.annotation.XmlRootElement;
/**
* Created by ds on 2016/12/12.
*/
@Entity
@Table(name = "brand")
@XmlRootElement(name = "brand")
public class Brand extends IntegratedStaticDataEntityBase {
/**
* UID.
*/
private static final long serialVersionUID = 1L;
public Brand(String code) {
super(code);
}
public Brand(String code, String name) {
super(code, name);
}
public Brand() {
}
}