package com.landy.gum.out.model;
|
|
import javax.persistence.Column;
|
import javax.persistence.Entity;
|
import javax.persistence.GeneratedValue;
|
import javax.persistence.Id;
|
import javax.persistence.Table;
|
|
import com.landy.framework.core.model.BaseModel;
|
|
/**
|
* Model class for OutExitDetail
|
*/
|
@Entity
|
@Table(name = "out_exit_detail")
|
@org.hibernate.annotations.Entity(dynamicInsert = true, dynamicUpdate = true)
|
public class OutExitDetailModel extends BaseModel {
|
|
//ouedId
|
private String ouedId;
|
|
/**
|
* Get ouedId
|
*/
|
@Column(name = "oued_id")
|
@Id @GeneratedValue(generator = "UUIDGenerator")
|
public String getOuedId() {
|
return ouedId;
|
}
|
|
/**
|
* Set ouedId
|
*/
|
public void setOuedId(String ouedId) {
|
this.ouedId = ouedId;
|
addValidField("ouedId");
|
}
|
|
}
|