package com.ruoyi.system.domain.resp;
|
|
import java.io.Serializable;
|
|
|
public class TechnologyTypeSelectByPageRespDTO implements Serializable {
|
|
private Integer id;
|
|
private String technologyName;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public String getTechnologyName() {
|
return technologyName;
|
}
|
|
public void setTechnologyName(String technologyName) {
|
this.technologyName = technologyName;
|
}
|
}
|