blob: 1cd89a0a119f563da7460a2388b1c60caf1ec0ee [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License") + you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.openmeetings.app.persistence.beans.lang;
import java.io.Serializable;
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
@Entity
@Table(name = "fieldlanguage")
public class FieldLanguage implements Serializable {
private static final long serialVersionUID = 3501643212388395425L;
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name="language_id")
private Long language_id;
@Column(name="name")
private String name;
@Column(name="starttime")
private Date starttime;
@Column(name="updatetime")
private Date updatetime;
@Column(name="deleted")
private String deleted;
@Column(name="rtl")
private Boolean rtl;
@Column(name="code")
private String code;
public FieldLanguage() {
}
public Long getLanguage_id() {
return language_id;
}
public void setLanguage_id(Long language_id) {
this.language_id = language_id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Date getStarttime() {
return starttime;
}
public void setStarttime(Date starttime) {
this.starttime = starttime;
}
public Date getUpdatetime() {
return updatetime;
}
public void setUpdatetime(Date updatetime) {
this.updatetime = updatetime;
}
public String getDeleted() {
return deleted;
}
public void setDeleted(String deleted) {
this.deleted = deleted;
}
public Boolean getRtl() {
return rtl;
}
public void setRtl(Boolean rtl) {
this.rtl = rtl;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
}