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.
29 lines
539 B
29 lines
539 B
6 years ago
|
package ${basePackage}.module.${moduleName}.rsp;
|
||
6 years ago
|
|
||
6 years ago
|
import ${basePackage}.frame.base.BaseResponse;
|
||
6 years ago
|
|
||
|
/**
|
||
|
* ${table.getCName()}CreateResponse - ${table.tableComment}
|
||
|
*
|
||
|
* @author ${author?default("")}
|
||
|
* @version 0.0.1
|
||
|
* @since ${date?string("yyyy-MM-dd")}
|
||
|
*/
|
||
|
public class ${table.getCName()}CreateResponse extends BaseResponse {
|
||
|
|
||
6 years ago
|
<#if module.isHasSysFields()>
|
||
6 years ago
|
/**
|
||
|
* ID
|
||
|
*/
|
||
|
private Long id;
|
||
|
|
||
|
public Long getId() {
|
||
|
return id;
|
||
|
}
|
||
|
|
||
|
public void setId(Long id) {
|
||
|
this.id = id;
|
||
|
}
|
||
6 years ago
|
</#if>
|
||
6 years ago
|
}
|