GITLAB

陈杰 / enrollStudent

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • enrollstudent
  • ..
  • dto
  • ColumnDto.java
  • b9411514   first Browse Code »
    陈杰
    2020-03-16 15:33:22 +0800  
ColumnDto.java 365 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
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;
    }
}