javabean

当bean作为接口的入参时,需要对该bean的set方法按注释规范添加注释。

/**
 * @occurs required
 * @param schoolName 学校名称
 */
public void setSchoolName(String schoolName) {
    this.schoolName = schoolName;
}

request


当bean作为接口的出参时,需要对该bean的get方法按注释规范添加注释。

/**
 * @return 密码
 */
public String getPassword() {
    return password;
}

response

results matching ""

    No results matching ""