32 lines
584 B
Java
32 lines
584 B
Java
package customization.test;
|
|
|
|
/**
|
|
* @author EBU7-dev1-ayh
|
|
* @create 2021/9/3 0003 14:59
|
|
* shujv
|
|
*/
|
|
|
|
|
|
public class TestDBVo {
|
|
int id;
|
|
String fieldname;
|
|
String indexdesc;
|
|
String tablename;
|
|
int billid;
|
|
String showtablename;
|
|
int fieldhtmltype;
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "TestDBVo{" +
|
|
"id=" + id +
|
|
", fieldname='" + fieldname + '\'' +
|
|
", indexdesc='" + indexdesc + '\'' +
|
|
", tablename='" + tablename + '\'' +
|
|
", billid=" + billid +
|
|
", showtablename='" + showtablename + '\'' +
|
|
", fieldhtmltype=" + fieldhtmltype +
|
|
'}';
|
|
}
|
|
}
|