com.kukababy.key.KeyInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dbquery Show documentation
Show all versions of dbquery Show documentation
Unified query of Mongodb and Sql database.
The newest version!
package com.kukababy.key;
/**
*
* 总体描述
*
*
* 1、
* 2、
*
*
* @author [email protected]
* @date 创建时间:2016年3月14日 下午6:18:44
*
*/
public class KeyInfo {
/**
* 上次保存的时间yyMMddHHmmssS格式
*/
private String oldDt;
/**
* 当前时间的条件下,序列增长的值
*/
private int count;
public String getOldDt() {
return oldDt;
}
public void setOldDt(String oldDt) {
this.oldDt = oldDt;
}
public int getCount() {
return count;
}
public void setCount(int count) {
this.count = count;
}
}