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.
27 lines
530 B
27 lines
530 B
package ${basePackage}.${moduleName}.rsp;
|
|
|
|
import ${basePackage}.frame.base.BaseResponse;
|
|
|
|
/**
|
|
* ${table.getCName()}UpdateResponse - ${table.tableComment}
|
|
*
|
|
* @author ${author?default("")}
|
|
* @version 0.0.1
|
|
* @since ${date?string("yyyy-MM-dd")}
|
|
*/
|
|
public class ${table.getCName()}UpdateResponse extends BaseResponse {
|
|
|
|
/**
|
|
* 更新数目
|
|
*/
|
|
private Long result;
|
|
|
|
public Long getResult() {
|
|
return this.result;
|
|
}
|
|
|
|
public void setResult(Long result) {
|
|
this.result = result;
|
|
}
|
|
}
|