package com.java110.dto.Dict;
|
|
import com.java110.dto.PageDto;
|
|
import java.io.Serializable;
|
|
/**
|
* <br>
|
* Created by hu ping on 10/22/2019
|
* <p>
|
*/
|
public class DictDto extends PageDto implements Serializable {
|
|
private int id;
|
private String statusCd;
|
private String name;
|
private String description;
|
|
private String tableName;
|
private String tableColumns;
|
private String specName;
|
private String specId;
|
|
public String getStatusCd() {
|
return statusCd;
|
}
|
|
public void setStatusCd(String statusCd) {
|
this.statusCd = statusCd;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getDescription() {
|
return description;
|
}
|
|
public void setDescription(String description) {
|
this.description = description;
|
}
|
|
public String getTableName() {
|
return tableName;
|
}
|
|
public void setTableName(String tableName) {
|
this.tableName = tableName;
|
}
|
|
public String getTableColumns() {
|
return tableColumns;
|
}
|
|
public void setTableColumns(String tableColumns) {
|
this.tableColumns = tableColumns;
|
}
|
|
public int getId() {
|
return id;
|
}
|
|
public void setId(int id) {
|
this.id = id;
|
}
|
|
public String getSpecName() {
|
return specName;
|
}
|
|
public void setSpecName(String specName) {
|
this.specName = specName;
|
}
|
|
public String getSpecId() {
|
return specId;
|
}
|
|
public void setSpecId(String specId) {
|
this.specId = specId;
|
}
|
}
|