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.
24 lines
407 B
24 lines
407 B
5 years ago
|
package ${domain}.frame.base;
|
||
|
|
||
|
/**
|
||
|
* BaseUpdateRequest - 基类
|
||
|
*
|
||
|
* @author wangbing
|
||
|
* @version 0.0.1
|
||
|
* @since 2017-01-01
|
||
|
*/
|
||
|
public class BaseUpdateRequest extends BaseRequest{
|
||
|
|
||
|
/**
|
||
|
* 版本戳
|
||
|
*/
|
||
|
private long rowVersion;
|
||
|
|
||
|
public long getRowVersion() {
|
||
|
return rowVersion;
|
||
|
}
|
||
|
|
||
|
public void setRowVersion(long rowVersion) {
|
||
|
this.rowVersion = rowVersion;
|
||
|
}
|
||
|
}
|