ColumnDto.java
365 Bytes
package com.sincere.student.dto;
public class ColumnDto {
private int type ;
private String name ;
public int getType() {
return type;
}
public void setType(int type) {
this.type = type;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}