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.

28 lines
744 B

package ${basePackage}.module.${moduleName}.rsp;
import ${basePackage}.module.${moduleName}.ent.${table.getCName()};
import ${basePackage}.frame.base.BaseResponse;
/**
* ${table.getCName()}GetResponse - ${table.tableComment}
*
* @author ${author?default("")}
* @version 0.0.1
* @since ${.now?string["yyyy-MM-dd"]}
*/
public class ${table.getCName()}GetResponse extends BaseResponse {
/**
* ${table.tableComment}
*/
private ${table.getCName()} ${table.getFName()};
public ${table.getCName()} get${table.getCName()}() {
return this.${table.getFName()};
}
public void set${table.getCName()}(${table.getCName()} ${table.getFName()}) {
this.${table.getFName()} = ${table.getFName()};
}
}

Powered by TurnKey Linux.