All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.icodegarden.commons.lang.query.TableDataCountPO Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package io.github.icodegarden.commons.lang.query;

import java.time.LocalDateTime;

import io.github.icodegarden.commons.lang.IdObject;

/**
 * 
 * @author Fangfang.Xu
 *
 */
public class TableDataCountPO implements IdObject {

	/**
	 * String 对非关系数据库友好
	 */
	private String id;
	private String tableName;
	private Long dataCount;
	private LocalDateTime updatedAt;// timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,

	@Override
	public String getId() {
		return id;
	}

	public void setId(String id) {
		this.id = id;
	}

	public String getTableName() {
		return tableName;
	}

	public void setTableName(String tableName) {
		this.tableName = tableName;
	}

	public Long getDataCount() {
		return dataCount;
	}

	public void setDataCount(Long dataCount) {
		this.dataCount = dataCount;
	}

	public LocalDateTime getUpdatedAt() {
		return updatedAt;
	}

	public void setUpdatedAt(LocalDateTime updatedAt) {
		this.updatedAt = updatedAt;
	}

	@Override
	public String toString() {
		return "TableDataCountPO [id=" + id + ", tableName=" + tableName + ", dataCount=" + dataCount + ", updatedAt="
				+ updatedAt + "]";
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy