SpringMvcStepByStep icon indicating copy to clipboard operation
SpringMvcStepByStep copied to clipboard

myfirstmvc

Open nmtolve opened this issue 6 years ago • 0 comments

package com.tutorialspoint;

public class Student { private Integer age; private String name; private Integer id;

public void setAge(Integer age) { this.age = age; } public Integer getAge() { return age; } public void setName(String name) { this.name = name; } public String getName() { return name; } public void setId(Integer id) { this.id = id; } public Integer getId() { return id; } }

nmtolve avatar Oct 27 '18 14:10 nmtolve