package ${domain}.module.${moduleName}.rsp;

import ${domain}.module.${moduleName}.ent.${table.getCName()};
import ${domain}.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()};
    }
}