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.
 
 
 

107 lines
2.7 KiB

/*
* Copyright (C), 2018-2021
* Project: starter
* FileName: ReportIndexInfoEntity
* Author: xx
* Date: 2021/9/15 10:08
*/
package com.fr.plugin.isgd.entity;
import com.fr.stable.db.entity.BaseEntity;
import com.fr.third.javax.persistence.Column;
import com.fr.third.javax.persistence.Entity;
import com.fr.third.javax.persistence.Table;
/**
* <Function Description><br>
* <fine_report_index_info>
*
* @author xx
* @since 1.0.0
*/
@Entity
@Table(name = "fine_report_index_info")
public class ReportIndexInfoEntity extends BaseEntity {
public static final String REPORT_CODE = "REPORT_CODE";
public static final String TABLE_CODE = "TABLE_CODE";
public static final String INDEX_CODE = "INDEX_CODE";
public static final String INDEX_NAME = "INDEX_NAME";
public static final String CREATE_DATE = "CREATE_DATE";
public static final String UPDATE_DATE = "UPDATE_DATE";
public static final String OP_USERNAME = "OP_USERNAME";
private static final long serialVersionUID = -7911976863964679579L;
@Column(name = REPORT_CODE)
private String reportCode;
@Column(name = TABLE_CODE)
private int tableCode;
@Column(name = INDEX_CODE)
private String indexCode;
@Column(name = INDEX_NAME)
private String indexName;
@Column(name = CREATE_DATE)
private String createDate;
@Column(name = UPDATE_DATE)
private String updateDate;
@Column(name = OP_USERNAME)
private String opUsername;
public ReportIndexInfoEntity() {
}
public String getReportCode() {
return reportCode;
}
public void setReportCode(String reportCode) {
this.reportCode = reportCode;
}
public int getTableCode() {
return tableCode;
}
public void setTableCode(int tableCode) {
this.tableCode = tableCode;
}
public String getIndexCode() {
return indexCode;
}
public void setIndexCode(String indexCode) {
this.indexCode = indexCode;
}
public String getIndexName() {
return indexName;
}
public void setIndexName(String indexName) {
this.indexName = indexName;
}
public String getCreateDate() {
return createDate;
}
public void setCreateDate(String createDate) {
this.createDate = createDate;
}
public String getUpdateDate() {
return updateDate;
}
public void setUpdateDate(String updateDate) {
this.updateDate = updateDate;
}
public String getOpUsername() {
return opUsername;
}
public void setOpUsername(String opUsername) {
this.opUsername = opUsername;
}
}