You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

68 lines
1.5 KiB

package com.eco.plugin.xxx.bjgjdata.db.bean;
import com.fr.stable.db.entity.BaseEntity;
import com.fr.stable.db.entity.TableAssociation;
import com.fr.third.javax.persistence.Column;
import com.fr.third.javax.persistence.Entity;
import com.fr.third.javax.persistence.Table;
import java.util.Date;
/**
* @author xxx
* @version 10.0
* Created by xxx on 2021-07-29
**/
@Entity
@Table(name = "plugin_xxx_entity_record")
@TableAssociation(associated = true)
public class RecordEntity extends BaseEntity {
//数据表名
@Column(name = "tableAlias",length = 5)
private String tableAlias = null;
//更新时间点
@Column(name = "updateTime" ,length = 50)
private String updateTime = null;
//通知唯一主键
@Column(name = "notifyId")
private Long notifyId = null;
//创建时间
@Column(name = "createtime")
private Date createtime = null;
public String getTableAlias() {
return tableAlias;
}
public void setTableAlias(String tableAlias) {
this.tableAlias = tableAlias;
}
public String getUpdateTime() {
return updateTime;
}
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
public Long getNotifyId() {
return notifyId;
}
public void setNotifyId(Long notifyId) {
this.notifyId = notifyId;
}
public Date getCreatetime() {
return createtime;
}
public void setCreatetime(Date createtime) {
this.createtime = createtime;
}
}