58 lines
1.2 KiB
Plaintext
58 lines
1.2 KiB
Plaintext
|
package th.co.muangthai.endrprint.model.bean.master;
|
||
|
|
||
|
import org.codehaus.jackson.annotate.JsonAutoDetect;
|
||
|
|
||
|
import javax.persistence.Column;
|
||
|
import javax.persistence.Entity;
|
||
|
import javax.persistence.Id;
|
||
|
import javax.persistence.Table;
|
||
|
import java.io.Serializable;
|
||
|
|
||
|
@JsonAutoDetect
|
||
|
@Entity
|
||
|
@Table(name = "MST_TEAM_TAB")
|
||
|
public class MstTeamTabBean implements Serializable {
|
||
|
|
||
|
@Id
|
||
|
@Column(name = "TEAM")
|
||
|
private String team;
|
||
|
@Column(name = "BPM_TEAM")
|
||
|
private String bpmTeam;
|
||
|
@Column(name = "FLAG")
|
||
|
private String flag;
|
||
|
@Column(name = "DESCRIPTION")
|
||
|
private String description;
|
||
|
|
||
|
public void setTeam(String team) {
|
||
|
this.team = team;
|
||
|
}
|
||
|
|
||
|
public String getTeam() {
|
||
|
return this.team;
|
||
|
}
|
||
|
|
||
|
public void setBpmTeam(String bpmTeam) {
|
||
|
this.bpmTeam = bpmTeam;
|
||
|
}
|
||
|
|
||
|
public String getBpmTeam() {
|
||
|
return this.bpmTeam;
|
||
|
}
|
||
|
|
||
|
public void setFlag(String flag) {
|
||
|
this.flag = flag;
|
||
|
}
|
||
|
|
||
|
public String getFlag() {
|
||
|
return this.flag;
|
||
|
}
|
||
|
|
||
|
public void setDescription(String description) {
|
||
|
this.description = description;
|
||
|
}
|
||
|
|
||
|
public String getDescription() {
|
||
|
return this.description;
|
||
|
}
|
||
|
}
|