You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
434 B
23 lines
434 B
package org.yangliu.codegenerate.entity;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* @Description
|
|
* @Author ZhouWenTao
|
|
* @Date 2023/8/13 21:43
|
|
*/
|
|
public class TableVo implements Serializable {
|
|
//表描述
|
|
private String ftlDescription;
|
|
|
|
|
|
public String getFtlDescription() {
|
|
return ftlDescription;
|
|
}
|
|
|
|
public void setFtlDescription(String ftlDescription) {
|
|
this.ftlDescription = ftlDescription;
|
|
}
|
|
}
|